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

Meat: add HUD messages

This commit is contained in:
Jbleezy
2023-02-26 13:41:38 -08:00
parent 4228bc1f54
commit 3decf68288
2 changed files with 43 additions and 0 deletions

View File

@ -22,6 +22,12 @@ meat_stink_on_ground(position_to_play)
{
if(level.scr_zm_ui_gametype_obj == "zmeat")
{
players = get_players();
foreach (player in players)
{
player thread show_grief_hud_msg("Meat dropped!");
}
level.meat_powerup = maps\mp\zombies\_zm_powerups::specific_powerup_drop( "meat_stink", groundpos(position_to_play) );
return;
}