1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 15:17:57 -05:00

Meat: fix "You have the meat!" HUD message not showing if meat picked up right away

This commit is contained in:
Jbleezy
2024-01-15 23:11:41 -08:00
parent 914ef68799
commit 765d71ce5c

View File

@ -3194,6 +3194,11 @@ meat_powerup_drop_think()
foreach (player in players)
{
if (isdefined(level.meat_player) && level.meat_player == player)
{
continue;
}
player thread show_grief_hud_msg(&"ZOMBIE_MEAT_DROPPED");
}