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

Python: remove

Executioner: remove on Buried
This commit is contained in:
Jbleezy 2023-12-30 22:53:39 -08:00
parent 08b400cd42
commit 8679cbc8f2
2 changed files with 16 additions and 0 deletions

View File

@ -140,6 +140,9 @@
### B23R
* Decreased weapon cost from 1000 to 900 on all maps
### Executioner
* Removed on Buried
### Five-seven Dual Wield
* Unupgraded: decreased stock ammo from 225 to 210 on all maps
* Upgraded: decreased stock ammo from 295 to 280 on all maps
@ -161,6 +164,9 @@
* Upgraded: fixed not being able to melee while aiming
* Upgraded: decreased last stand ammo from 2 clips to 1 clip
### Python
* Removed
### Tac-45
* Replaces M1911 (except on Mob of the Dead)

View File

@ -1683,6 +1683,16 @@ weapon_changes()
include_weapon( "ballista_zm", 0 );
include_weapon( "ballista_upgraded_zm", 0 );
add_zombie_weapon( "ballista_zm", "ballista_upgraded_zm", &"ZMWEAPON_BALLISTA_WALLBUY", 500, "wpck_snipe", "", undefined, 1 );
if (isdefined(level.zombie_weapons["python_zm"]))
{
level.zombie_weapons["python_zm"].is_in_box = 0;
}
if (level.script == "zm_buried")
{
level.zombie_weapons["judge_zm"].is_in_box = 0;
}
}
player_give_willy_pete()