diff --git a/README.md b/README.md index d5d87062..c66ba8e3 100644 --- a/README.md +++ b/README.md @@ -894,6 +894,7 @@ * Giant Robots: each robot has an openable foot when 3 robots are active * Tank: players can go prone * Tank: changed cooldown to 30 seconds (normally 2-120 seconds depending on how long players were on the tank) +* Tank: no longer free to activate if called * Teleporters: stay active after picking up gramophone * Teleporters: placing gramophone activates The Crazy Place teleporters * Teleporters: players face away from the teleporters when returning from The Crazy Place diff --git a/scripts/zm/replaced/zm_tomb_tank.gsc b/scripts/zm/replaced/zm_tomb_tank.gsc index 4559f15d..62639bcc 100644 --- a/scripts/zm/replaced/zm_tomb_tank.gsc +++ b/scripts/zm/replaced/zm_tomb_tank.gsc @@ -67,4 +67,9 @@ wait_for_tank_cooldown() level notify("stp_cd"); self playsound("zmb_tank_ready"); self playloopsound("zmb_tank_idle"); +} + +activate_tank_wait_with_no_cost() +{ + // removed } \ No newline at end of file diff --git a/scripts/zm/zm_tomb/zm_tomb_reimagined.gsc b/scripts/zm/zm_tomb/zm_tomb_reimagined.gsc index 1d54e611..3a3539f9 100644 --- a/scripts/zm/zm_tomb/zm_tomb_reimagined.gsc +++ b/scripts/zm/zm_tomb/zm_tomb_reimagined.gsc @@ -35,6 +35,7 @@ main() replaceFunc(maps\mp\zm_tomb_giant_robot::robot_cycling, scripts\zm\replaced\zm_tomb_giant_robot::robot_cycling); replaceFunc(maps\mp\zm_tomb_tank::players_on_tank_update, scripts\zm\replaced\zm_tomb_tank::players_on_tank_update); replaceFunc(maps\mp\zm_tomb_tank::wait_for_tank_cooldown, scripts\zm\replaced\zm_tomb_tank::wait_for_tank_cooldown); + replaceFunc(maps\mp\zm_tomb_tank::activate_tank_wait_with_no_cost, scripts\zm\replaced\zm_tomb_tank::activate_tank_wait_with_no_cost); replaceFunc(maps\mp\zm_tomb_teleporter::teleporter_init, scripts\zm\replaced\zm_tomb_teleporter::teleporter_init); replaceFunc(maps\mp\zm_tomb_utility::update_staff_accessories, scripts\zm\replaced\zm_tomb_utility::update_staff_accessories); replaceFunc(maps\mp\zm_tomb_utility::check_solo_status, scripts\zm\replaced\zm_tomb_utility::check_solo_status);