1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-21 20:50:42 -05:00

Meat powerup: fix being able to spawn while meat stink was on a player

This commit is contained in:
Jbleezy
2023-03-24 08:53:03 -07:00
parent 4078222d65
commit 116c058726

View File

@ -2518,7 +2518,7 @@ func_should_drop_meat()
} }
} }
if (isDefined(level.item_meat) || is_true(level.meat_on_ground)) if (isDefined(level.item_meat) || is_true(level.meat_on_ground) || isDefined(level.meat_player))
{ {
return 0; return 0;
} }