From bbc9e516794acb5cfad26d9a49bbf034dd32d2e0 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Wed, 6 Aug 2014 23:42:54 +0200 Subject: [PATCH] is_in_brig() fixes --- code/modules/mob/mob.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index ce564b90ca4..8e00d2ebcdc 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -818,7 +818,7 @@ var/list/slot_equipment_priority = list( \ // They should be in a cell or the Brig portion of the shuttle. var/area/A = loc.loc - if(!istype(A, /area/security/brig)) + if(!istype(A, /area/security/prison) && !istype(A, /area/prison)) if(!istype(A, /area/shuttle/escape) || loc.name != "Brig floor") return 0