From 4a93756e6b94fcef5684472cac36be38f67af88c Mon Sep 17 00:00:00 2001 From: Robustin Date: Wed, 27 Dec 2017 09:25:02 -0500 Subject: [PATCH 1/2] Hallucinations no longer show open doors "bolting" (#33859) * No more "bolting" open doors * Update Hallucination.dm * Update Hallucination.dm --- code/modules/flufftext/Hallucination.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/flufftext/Hallucination.dm b/code/modules/flufftext/Hallucination.dm index 92dc109bbc..e55b7ed183 100644 --- a/code/modules/flufftext/Hallucination.dm +++ b/code/modules/flufftext/Hallucination.dm @@ -714,6 +714,8 @@ GLOBAL_LIST_INIT(hallucinations_major, list( for(var/obj/machinery/door/airlock/A in range(7, target)) if(count>door_number && door_number>0) break + if(!A.density) + continue count++ I = image(A.overlays_file, get_turf(A), "lights_bolts",layer=A.layer+0.1) doors += I