diff --git a/Content.Shared/CombatMode/Pacification/PacificationSystem.cs b/Content.Shared/CombatMode/Pacification/PacificationSystem.cs index a927e1a697..14507ce1f5 100644 --- a/Content.Shared/CombatMode/Pacification/PacificationSystem.cs +++ b/Content.Shared/CombatMode/Pacification/PacificationSystem.cs @@ -54,7 +54,8 @@ public sealed class PacificationSystem : EntitySystem && !(_timing.CurTime > user.Comp.NextPopupTime)) return; - _popup.PopupClient(Loc.GetString(reason, ("entity", target)), user, user); + var targetName = Identity.Entity(target, EntityManager); + _popup.PopupClient(Loc.GetString(reason, ("entity", targetName)), user, user); user.Comp.NextPopupTime = _timing.CurTime + user.Comp.PopupCooldown; user.Comp.LastAttackedEntity = target; }