From 202f8e81d88bb60a1138408fc8c5cc4df0ef53d7 Mon Sep 17 00:00:00 2001 From: Tigercat2000 Date: Thu, 26 Mar 2015 21:03:23 +0100 Subject: [PATCH] Make actually work, grgrgr. --- code/game/objects/structures/spirit_board.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/code/game/objects/structures/spirit_board.dm b/code/game/objects/structures/spirit_board.dm index 1ddc8c24c4b..d1be680de0a 100644 --- a/code/game/objects/structures/spirit_board.dm +++ b/code/game/objects/structures/spirit_board.dm @@ -63,11 +63,8 @@ var/light_amount = 0 var/turf/T = get_turf(src) var/area/A = T.loc - var/ischapel = 0 if(A) - if(A.name == "Chapel") - ischapel = 1 if(A.lighting_use_dynamic) light_amount = T.lighting_lumcount else @@ -77,10 +74,6 @@ M << "It's too bright here to use [src.name]!" return 0 - if(!ischapel) - return 0 - - //mobs in range check var/users_in_range = 0 for(var/mob/living/L in orange(1,src))