From 266dc47b80bc1b6ec0d1741a7aeb2592716ef2de Mon Sep 17 00:00:00 2001 From: Doru991 <75124791+Doru991@users.noreply.github.com> Date: Wed, 13 Sep 2023 07:35:04 +0300 Subject: [PATCH] welder fix (#20090) --- Content.Server/Tools/ToolSystem.Welder.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Content.Server/Tools/ToolSystem.Welder.cs b/Content.Server/Tools/ToolSystem.Welder.cs index 7e9c7181c5..bd626258ec 100644 --- a/Content.Server/Tools/ToolSystem.Welder.cs +++ b/Content.Server/Tools/ToolSystem.Welder.cs @@ -85,7 +85,7 @@ namespace Content.Server.Tools return false; // Optional components. - Resolve(uid, ref item,ref appearance, false); + Resolve(uid, ref item, ref appearance, false); _light.ResolveLight(uid, ref light); @@ -150,7 +150,9 @@ namespace Content.Server.Tools return false; // Optional components. - Resolve(uid, ref item, ref light, ref appearance, false); + Resolve(uid, ref item, ref appearance, false); + + _light.ResolveLight(uid, ref light); welder.Lit = false; -- 2.51.2