From b7edb181ed244cabdbceb49451e4c3b1a26291a4 Mon Sep 17 00:00:00 2001 From: Chinsky Date: Tue, 5 Nov 2013 03:59:39 +0400 Subject: [PATCH] Where can I get my idiot certificate. --- code/game/objects/structures/tables_racks.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index 9b71db347a..16c5be21a8 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -411,10 +411,10 @@ /obj/structure/table/verb/can_touch(var/mob/user) if (!user) return 0 - if (usr.stat) //zombie goasts go away + if (user.stat) //zombie goasts go away return 0 - if (issilicon(usr)) - usr << "You need hands for this." + if (issilicon(user)) + user << "You need hands for this." return 0 return 1