Revenants no longer cause the object to emag itself (#19199)

This commit is contained in:
LankLTE
2023-08-16 01:33:12 -07:00
committed by GitHub
parent 94b277fe33
commit 1f42412203

View File

@@ -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.
}
}
}