From b30f09153b38584a1082e5c634f8fa5843bd8714 Mon Sep 17 00:00:00 2001 From: ArchieBeepBoop <53913550+ArchieBeepBoop@users.noreply.github.com> Date: Fri, 29 Oct 2021 00:56:43 -0300 Subject: [PATCH] Revert "Makes it so jacq can only TP to hallways and the library." --- code/modules/holiday/halloween/jacqueen.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/holiday/halloween/jacqueen.dm b/code/modules/holiday/halloween/jacqueen.dm index ee6725405..886d7c771 100644 --- a/code/modules/holiday/halloween/jacqueen.dm +++ b/code/modules/holiday/halloween/jacqueen.dm @@ -118,20 +118,20 @@ for(var/obj/machinery/holopad/hp in world) hp_list += hp - var/allowed_areas = list("Primary Hallway", "Library") + var/nono_areas = list("AI ") for(var/i = 0, i <= 6, i+=1) //Attempts a jump 6 times. var/obj/machinery/holopad/hp = pick(hp_list) if(forceMove(pick(hp.loc))) var/jacq_please_no = FALSE - for(var/allowed_area in allowed_areas) + for(var/no_area in nono_areas) var/turf/L1 = hp.loc if(!L1) //Incase the area isn't a turf (i.e. in a locker) continue var/area/L2 = L1.loc if(L2) - if(!findtext(L2.name, allowed_area)) + if(findtext(L2.name, no_area)) jacq_please_no = TRUE if(jacq_please_no)