From 9463880ed89adfefec3ee2bd24dc65aced3d89e3 Mon Sep 17 00:00:00 2001 From: Sawu Date: Wed, 22 Jun 2016 22:56:07 +1000 Subject: [PATCH] Renames the initTemplateZLevel function to initTemplateBounds --- code/datums/helper_datums/map_template.dm | 4 ++-- code/game/gamemodes/miniantags/hades/hades.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/datums/helper_datums/map_template.dm b/code/datums/helper_datums/map_template.dm index 8fb95f37d62..967d7bea649 100644 --- a/code/datums/helper_datums/map_template.dm +++ b/code/datums/helper_datums/map_template.dm @@ -23,7 +23,7 @@ height = bounds[MAP_MAXY] return bounds -/proc/initTemplateZLevel(var/list/bounds) +/proc/initTemplateBounds(var/list/bounds) var/list/obj/machinery/atmospherics/atmos_machines = list() var/list/obj/structure/cable/cables = list() var/list/atom/atoms = list() @@ -59,7 +59,7 @@ return 0 //initialize things that are normally initialized after map load - initTemplateZLevel(bounds) + initTemplateBounds(bounds) log_game("[name] loaded at at [T.x],[T.y],[T.z]") return 1 diff --git a/code/game/gamemodes/miniantags/hades/hades.dm b/code/game/gamemodes/miniantags/hades/hades.dm index 7b058bff92f..d9882cf21b4 100644 --- a/code/game/gamemodes/miniantags/hades/hades.dm +++ b/code/game/gamemodes/miniantags/hades/hades.dm @@ -85,7 +85,7 @@ //helper_datums/map_template.dmm make this a generic function var/list/bounds = maploader.load_map('_maps/map_files/generic/chapel.dmm') - initTemplateZLevel(bounds) + initTemplateBounds(bounds) log_game("Chapel of Sin loaded by [src] spawning.") //