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

Meat powerup: increase move speed while holding the meat

This commit is contained in:
Jbleezy
2023-12-02 18:40:50 -08:00
parent b6b0dc0255
commit 2097f772d1
2 changed files with 2 additions and 2 deletions

View File

@ -415,7 +415,7 @@
### Meat
* All zombies go after player holding the meat
* 60% move speed while holding the meat
* 75% move speed while holding the meat
* Take 10 damage per second while holding the meat
* Player who threw the meat can meat themself
* Attracts zombies more consistently on ground

View File

@ -160,7 +160,7 @@ meat_stink( who )
who giveweapon( "item_meat_zm" );
who switchtoweapon( "item_meat_zm" );
who setweaponammoclip( "item_meat_zm", 1 );
who setMoveSpeedScale(0.6);
who setMoveSpeedScale(0.75);
who.ignoreme = 0;
level.meat_player = who;
level.meat_powerup = undefined;