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

Meat: add additional checks for meat powerup drop

This commit is contained in:
Jbleezy
2023-03-12 17:42:39 -07:00
parent ad5db72c2a
commit 4419a0f408

View File

@ -233,6 +233,16 @@ meat_powerup_drop_on_downed()
self waittill("player_downed");
if (isDefined(level.item_meat))
{
return;
}
if (isDefined(level.meat_powerup))
{
return;
}
valid_drop = check_point_in_enabled_zone( self.origin, undefined, undefined );
if (valid_drop)