From: Perry Fraser Date: Fri, 2 May 2025 01:07:15 +0000 (-0400) Subject: Pointing arrow smite no longer lasts forever (#37102) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=64141b974bfccb7be141f75f5b157692e5efb527;p=space-station-14.git Pointing arrow smite no longer lasts forever (#37102) fix: pointing arrow smite no longer lasts forever --- diff --git a/Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs b/Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs index bdd652f38f..1edcec6677 100644 --- a/Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs @@ -32,7 +32,7 @@ namespace Content.Server.Pointing.EntitySystems var angering = _random.Pick(targets); angering.Comp.RemainingAnger -= 1; if (angering.Comp.RemainingAnger <= 0) - RemComp(uid); + RemComp(angering); return angering.Owner; }