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

Encounter: Max Ammo takes away enemy players' grenades and claymores

This commit is contained in:
Jbleezy
2023-03-13 17:42:40 -07:00
parent 78df4ab103
commit 43f375eb80
2 changed files with 5 additions and 1 deletions

View File

@ -528,7 +528,7 @@
* Decreased max height for landing on top of an enemy player by 50%
* M1911 upgraded: decreased stock ammo from 50 to 24
* Max Ammo: decreased amount of ammo given from max stock to one clip
* Max Ammo: unloads clip of all enemy players' weapons
* Max Ammo: unloads clip of all enemy players' weapons and takes away their grenades and claymores
* Double Points: decreased duration from 30 seconds to 15 seconds
* Double Points: enemy players gain half points
* Insta Kill: decreased duration from 30 seconds to 15 seconds

View File

@ -121,6 +121,10 @@ empty_clip_powerup( drop_item, player )
players[i] setweaponammoclip(alt_weapon, 0);
}
players[i] setweaponammoclip(players[i] get_player_lethal_grenade(), 0);
players[i] setweaponammoclip(players[i] get_player_tactical_grenade(), 0);
players[i] setweaponammoclip(players[i] get_player_placeable_mine(), 0);
i++;
}