diff --git a/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs b/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs index 6852509d44..846c27740e 100644 --- a/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs +++ b/Content.Server/GameObjects/Components/Doors/ServerDoorComponent.cs @@ -471,7 +471,7 @@ namespace Content.Server.GameObjects.Components.Doors return false; } - if (!eventArgs.Using.TryGetComponent(out WelderComponent? tool)) + if (!eventArgs.Using.TryGetComponent(out WelderComponent? tool) || !tool.WelderLit) { _beingWelded = false; return false;