diff --git a/scripts/zm/_zm_reimagined.gsc b/scripts/zm/_zm_reimagined.gsc index 1b15f804..fb432516 100644 --- a/scripts/zm/_zm_reimagined.gsc +++ b/scripts/zm/_zm_reimagined.gsc @@ -47,7 +47,7 @@ main() replaceFunc(maps/mp/zombies/_zm_powerups::nuke_powerup, scripts/zm/replaced/_zm_powerups::nuke_powerup); replaceFunc(maps/mp/zombies/_zm_powerups::insta_kill_powerup, scripts/zm/replaced/_zm_powerups::insta_kill_powerup); replaceFunc(maps/mp/zombies/_zm_powerups::double_points_powerup, scripts/zm/replaced/_zm_powerups::double_points_powerup); - replaceFunc(maps/mp/zombies/_zm_pers_upgrades::pers_upgrade_init, scripts/zm/replaced/_zm_pers_upgrades::pers_upgrade_init); + replaceFunc(maps/mp/zombies/_zm_pers_upgrades::is_pers_system_disabled, scripts/zm/replaced/_zm_pers_upgrades::is_pers_system_disabled); replaceFunc(maps/mp/zombies/_zm_equipment::show_equipment_hint, scripts/zm/replaced/_zm_equipment::show_equipment_hint); replaceFunc(maps/mp/zombies/_zm_equipment::placed_equipment_think, scripts/zm/replaced/_zm_equipment::placed_equipment_think); replaceFunc(maps/mp/zombies/_zm_ai_basic::inert_wakeup, scripts/zm/replaced/_zm_ai_basic::inert_wakeup); diff --git a/scripts/zm/replaced/_zm_pers_upgrades.gsc b/scripts/zm/replaced/_zm_pers_upgrades.gsc index a8179294..94cfc8c7 100644 --- a/scripts/zm/replaced/_zm_pers_upgrades.gsc +++ b/scripts/zm/replaced/_zm_pers_upgrades.gsc @@ -2,23 +2,7 @@ #include common_scripts\utility; #include maps\mp\zombies\_zm_utility; -pers_upgrade_init() +is_pers_system_disabled() { - /* - setup_pers_upgrade_boards(); - setup_pers_upgrade_revive(); - setup_pers_upgrade_multi_kill_headshots(); - setup_pers_upgrade_cash_back(); - setup_pers_upgrade_insta_kill(); - setup_pers_upgrade_jugg(); - setup_pers_upgrade_carpenter(); - setup_pers_upgrade_flopper(); - setup_pers_upgrade_perk_lose(); - setup_pers_upgrade_pistol_points(); - setup_pers_upgrade_double_points(); - setup_pers_upgrade_sniper(); - setup_pers_upgrade_box_weapon(); - setup_pers_upgrade_nube(); - level thread pers_upgrades_monitor(); - */ + return 1; } \ No newline at end of file