From 6bfb5f2781691312fc018915bfcabe4fad3fd604 Mon Sep 17 00:00:00 2001 From: Archie <53913550+ArchieBeepBoop@users.noreply.github.com> Date: Tue, 13 Sep 2022 15:50:17 -0300 Subject: [PATCH] Boom. --- code/__HELPERS/unsorted_hyper.dm | 2 +- hyperstation/code/mobs/mimic.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/__HELPERS/unsorted_hyper.dm b/code/__HELPERS/unsorted_hyper.dm index 8523c5461..6fc5a8631 100644 --- a/code/__HELPERS/unsorted_hyper.dm +++ b/code/__HELPERS/unsorted_hyper.dm @@ -23,7 +23,7 @@ GLOBAL_LIST_INIT(basic_blacklisted_area_list, typecacheof(list( // Performance intensive check for picking an area with turfs that are considered the safest possible to spawn something in. //Only use this for creatures, as it considers people around, temperature, area size and more. -/proc/get_safest_possible_turfs(list/blacklisted_areas, spawncount) +/proc/get_safest_spawn_turfs(list/blacklisted_areas, spawncount) var/list/area/stationAreas = list() var/list/area/eligible_areas = list() var/validFound = FALSE diff --git a/hyperstation/code/mobs/mimic.dm b/hyperstation/code/mobs/mimic.dm index 46b6ff994..73f29a2bc 100644 --- a/hyperstation/code/mobs/mimic.dm +++ b/hyperstation/code/mobs/mimic.dm @@ -333,7 +333,7 @@ priority_announce("Unidentified lifesigns detected aboard [station_name()]. Secure any exterior access, including ducting and ventilation.", "Lifesign Alert", 'sound/ai/aliens.ogg') /datum/round_event/mimic_infestation/start() - var/list/turf/validTurfs = get_safest_possible_turfs(GLOB.basic_blacklisted_area_list, spawncount) + var/list/turf/validTurfs = get_safest_spawn_turfs(GLOB.basic_blacklisted_area_list, spawncount) if(!validTurfs.len) message_admins("No eligible areas for spawning mimics.") return WAITING_FOR_SOMETHING