1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-22 13:10:28 -05:00

Rename location scripts

This commit is contained in:
Jbleezy
2022-01-14 10:25:11 -08:00
parent 2252191028
commit d57f35361a
4 changed files with 15 additions and 15 deletions

View File

@ -2,7 +2,7 @@
#include maps/mp/zombies/_zm_utility;
#include common_scripts/utility;
common_init()
init()
{
level.enemy_location_override_func = ::enemy_location_override;
flag_wait( "initial_blackscreen_passed" );

View File

@ -5,7 +5,7 @@
#include maps/mp/zombies/_zm;
#include scripts/zm/replaced/utility;
#include scripts/zm/locs/common;
#include scripts/zm/locs/loc_common;
struct_init()
{
@ -60,7 +60,7 @@ main()
init_barriers();
generatebuildabletarps();
disable_zombie_spawn_locations();
scripts/zm/locs/common::common_init();
scripts/zm/locs/loc_common::init();
}
treasure_chest_init()

View File

@ -6,7 +6,7 @@
#include maps/mp/zombies/_zm_zonemgr;
#include scripts/zm/replaced/utility;
#include scripts/zm/locs/common;
#include scripts/zm/locs/loc_common;
struct_init()
{
@ -50,7 +50,7 @@ main()
show_powerswitch();
disable_zombie_spawn_locations();
level thread maps/mp/zm_transit::falling_death_init();
scripts/zm/locs/common::common_init();
scripts/zm/locs/loc_common::init();
}
treasure_chest_init()