From 1f42412203494132d3434096d796a67991a8b45b Mon Sep 17 00:00:00 2001 From: LankLTE <135308300+LankLTE@users.noreply.github.com> Date: Wed, 16 Aug 2023 01:33:12 -0700 Subject: [PATCH] Revenants no longer cause the object to emag itself (#19199) --- .../Revenant/EntitySystems/RevenantSystem.Abilities.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs index 553a54d92a..66a7076569 100644 --- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs +++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs @@ -320,7 +320,7 @@ public sealed partial class RevenantSystem foreach (var ent in _lookup.GetEntitiesInRange(uid, component.MalfunctionRadius)) { - _emag.DoEmagEffect(ent, ent); //it emags itself. spooky. + _emag.DoEmagEffect(uid, ent); //it does not emag itself. adorable. } } }