1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-07 21:59:49 -05:00
BO2-Reimagined/scripts/zm/_zm_reimagined.csc
2024-03-26 01:21:05 -07:00

18 lines
456 B
Plaintext

#include clientscripts\mp\_utility;
#include clientscripts\mp\zombies\_zm_utility;
main()
{
replaceFunc(clientscripts\mp\zombies\_zm::init_wallbuy_fx, scripts\zm\replaced\_zm::init_wallbuy_fx);
replaceFunc(clientscripts\mp\zombies\_zm_weapons::init, scripts\zm\replaced\_zm_weapons::init);
powerup_changes();
}
powerup_changes()
{
if (getDvar("mapname") == "zm_transit" || getDvar("mapname") == "zm_highrise")
{
include_powerup("fire_sale");
}
}