From 64141b974bfccb7be141f75f5b157692e5efb527 Mon Sep 17 00:00:00 2001 From: Perry Fraser Date: Thu, 1 May 2025 21:07:15 -0400 Subject: [PATCH] Pointing arrow smite no longer lasts forever (#37102) fix: pointing arrow smite no longer lasts forever --- Content.Server/Pointing/EntitySystems/RoguePointingSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }