Target Dummies Now Show Damage Numbers from Projectiles to User (#40101)

* Uh, guess this works for now

* Review Change
This commit is contained in:
Prole 2025-09-23 10:20:46 -07:00 committed by Vanessa
parent 8ddcbba5ee
commit 7d7cce25e8
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
}