From 30541674e1c703dc85e19a6d60388a3aa4f320d0 Mon Sep 17 00:00:00 2001 From: Markolie Date: Mon, 10 Aug 2015 00:06:21 +0200 Subject: [PATCH] Let ghosts properly access turret controls --- code/game/machinery/turret_control.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/turret_control.dm b/code/game/machinery/turret_control.dm index 1f09153a78a..987d48011d4 100644 --- a/code/game/machinery/turret_control.dm +++ b/code/game/machinery/turret_control.dm @@ -68,7 +68,7 @@ user << "There seems to be a firewall preventing you from accessing this device." return 1 - if(locked && !(isrobot(user) || isAI(user))) + if(locked && !(isrobot(user) || isAI(user) || isobserver(user))) user << "Access denied." return 1