1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-13 00:28:03 -05:00

Meat: fix meat dropped HUD message not showing if picked up right away

This commit is contained in:
Jbleezy
2024-01-14 17:03:59 -08:00
parent 5c8e7d1ed0
commit 98be8a55b6

View File

@ -3154,15 +3154,12 @@ meat_powerup_drop_think()
continue; continue;
} }
if (!isDefined(level.meat_player))
{
players = get_players(); players = get_players();
foreach (player in players) foreach (player in players)
{ {
player thread show_grief_hud_msg(&"ZOMBIE_MEAT_DROPPED"); player thread show_grief_hud_msg(&"ZOMBIE_MEAT_DROPPED");
} }
}
level.meat_powerup = powerup; level.meat_powerup = powerup;