From c2a35a7ab8a80735f329735fa6d1dbee9f844f92 Mon Sep 17 00:00:00 2001 From: Shadowlight213 Date: Fri, 25 Dec 2015 15:07:06 -0800 Subject: [PATCH] Changes click check --- code/_onclick/observer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_onclick/observer.dm b/code/_onclick/observer.dm index 974bae0d993..411f562888b 100644 --- a/code/_onclick/observer.dm +++ b/code/_onclick/observer.dm @@ -43,7 +43,7 @@ // Oh by the way this didn't work with old click code which is why clicking shit didn't spam you /atom/proc/attack_ghost(mob/dead/observer/user) if(user.client) - if(check_rights(R_ADMIN, 0) && user.client.AI_Interact) + if(IsAdminGhost(user)) attack_ai(user) if(user.client.prefs.inquisitive_ghost) user.examinate(src)