From 0805b89ea7b082905b02186198af0346e9fb57d2 Mon Sep 17 00:00:00 2001 From: datlo Date: Thu, 7 Feb 2019 14:27:38 +0000 Subject: [PATCH] Update access denied message the old message would make you think you need a golem id or somethin --- code/modules/shuttle/shuttle.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 5a226dc20f2..b764bf45b02 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -842,7 +842,7 @@ /obj/machinery/computer/shuttle/golem_ship/attack_hand(mob/user) if(!isgolem(user)) - to_chat(user, "Access denied.") + to_chat(user, "The console is unresponsive. Seems only golems can use it.") return ..()