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

Meat: don't show meat thrown msg when meleeing the meat

This commit is contained in:
Jbleezy
2023-03-15 14:25:48 -07:00
parent e8cf37be5e
commit df7abe44ab

View File

@ -68,7 +68,10 @@ item_meat_on_spawn_retrieve_trigger( watcher, player, weaponname )
if (level.scr_zm_ui_gametype_obj == "zmeat")
{
other_player thread scripts\zm\zgrief\zgrief_reimagined::show_grief_hud_msg("Meat thrown!");
if (!is_true(player._kicking_meat))
{
other_player thread scripts\zm\zgrief\zgrief_reimagined::show_grief_hud_msg("Meat thrown!");
}
}
}