From b60c9097e851bfd06ab8ebaa435ce13f3d1761d8 Mon Sep 17 00:00:00 2001 From: Neerti Date: Wed, 12 Dec 2018 20:31:54 -0500 Subject: [PATCH] Uncomments a thing. --- code/modules/maps/tg/map_template.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/maps/tg/map_template.dm b/code/modules/maps/tg/map_template.dm index 54b36f2d14..8a601163d0 100644 --- a/code/modules/maps/tg/map_template.dm +++ b/code/modules/maps/tg/map_template.dm @@ -174,7 +174,7 @@ else potential_submaps += MT -// CHECK_TICK + CHECK_TICK var/list/loaded_submap_names = list() var/list/template_groups_used = list() // Used to avoid spawning three seperate versions of the same PoI. @@ -194,7 +194,7 @@ admin_notice("Submap loader had no submaps to pick from with [budget] left to spend.", R_DEBUG) break -// CHECK_TICK + CHECK_TICK // Can we afford it? if(chosen_template.cost > budget) @@ -232,9 +232,9 @@ valid = FALSE // Probably overlapping something important. // world << "Invalid due to overlapping with area [new_area.type] at ([check.x], [check.y], [check.z]), when attempting to place at ([T.x], [T.y], [T.z])." break -// CHECK_TICK + CHECK_TICK -// CHECK_TICK + CHECK_TICK if(!valid) continue @@ -244,7 +244,7 @@ // Do loading here. chosen_template.load(T, centered = TRUE, orientation=orientation) // This is run before the main map's initialization routine, so that can initilize our submaps for us instead. -// CHECK_TICK + CHECK_TICK // For pretty maploading statistics. if(loaded_submap_names[chosen_template.name])