From 6fb3c0dfdd2d59094020cd0437b16a2d68fdf558 Mon Sep 17 00:00:00 2001 From: Names Are Hard Date: Sun, 26 Jan 2020 21:26:18 -0800 Subject: [PATCH] Adds check to allow silicons through med barriers --- code/game/objects/structures/holosign.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/holosign.dm b/code/game/objects/structures/holosign.dm index cbf114337db..299b077b42b 100644 --- a/code/game/objects/structures/holosign.dm +++ b/code/game/objects/structures/holosign.dm @@ -133,7 +133,7 @@ /obj/structure/holosign/barrier/medical/CanAllowThrough(atom/movable/mover, turf/target) . = ..() - if(force_allaccess) + if(force_allaccess || issilicon(mover)) return TRUE if(ishuman(mover)) return CheckHuman(mover)