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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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