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

Meat powerup: fix being able to drop when another meat powerup is already dropped

This commit is contained in:
Jbleezy
2023-03-12 17:37:59 -07:00
parent 1f0c9157fc
commit ad5db72c2a
2 changed files with 16 additions and 7 deletions

View File

@ -306,8 +306,9 @@
* Player who threw the meat can meat themself
* Decreased time on ground from 16 seconds to 10 seconds
* Bounces off walls when thrown
* Able to drop when players are down
* Changed powerup fx color to blue
* Able to drop when players are down
* Fixed being able to drop when another meat powerup was already dropped
* Message shows when the meat is grabbed and thrown on a player
* Meleeing while the meat is moving no longer grabs the meat
* Meleeing while the meat is moving throws the meat
@ -450,7 +451,7 @@
#### Cell Block
* Added Smoke Grenades to the Mystery Box
* Added Richtofen Head meat powerup model
* Added Richtofen's Head meat powerup model
### Buried
* Power automatically on

View File

@ -2344,6 +2344,14 @@ func_should_drop_meat()
return 0;
}
foreach (powerup in level.active_powerups)
{
if (powerup.powerup_name == "meat_stink")
{
return 0;
}
}
players = get_players();
foreach (player in players)
{