diff --git a/Content.Shared/Damage/Systems/DamagePopupSystem.cs b/Content.Shared/Damage/Systems/DamagePopupSystem.cs index 83cd551279..fa29b5a018 100644 --- a/Content.Shared/Damage/Systems/DamagePopupSystem.cs +++ b/Content.Shared/Damage/Systems/DamagePopupSystem.cs @@ -31,7 +31,8 @@ public sealed class DamagePopupSystem : EntitySystem _ => "Invalid type", }; - _popupSystem.PopupPredicted(msg, ent.Owner, args.Origin); + // Turn this back into (msg, ent.Owner, args.Origin) when shooting gets predicted. + _popupSystem.PopupPredicted(msg, ent.Owner, null); } }