From: Prole <172158352+Prole0@users.noreply.github.com> Date: Tue, 23 Sep 2025 17:20:46 +0000 (-0700) Subject: Target Dummies Now Show Damage Numbers from Projectiles to User (#40101) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=3ee7d81944aebedc183862961b123ce0508c445b;p=space-station-14.git Target Dummies Now Show Damage Numbers from Projectiles to User (#40101) * Uh, guess this works for now * Review Change --- 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); } }