diff --git a/Content.Server/GameObjects/Components/Power/PoweredLightComponent.cs b/Content.Server/GameObjects/Components/Power/PoweredLightComponent.cs index b053aff790..555ab4ea2b 100644 --- a/Content.Server/GameObjects/Components/Power/PoweredLightComponent.cs +++ b/Content.Server/GameObjects/Components/Power/PoweredLightComponent.cs @@ -62,13 +62,10 @@ namespace Content.Server.GameObjects.Components.Power UpdateLight(); return true; } - else - { - if (!user.TryGetComponent(out DamageableComponent damageableComponent)) return false; - damageableComponent.TakeDamage(DamageType.Heat, 20); - } - UpdateLight(); + if (!user.TryGetComponent(out DamageableComponent damageableComponent)) return false; + damageableComponent.TakeDamage(DamageType.Heat, 20); + return true; return false; }