diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 28fb4a485d..2fd212b4dc 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -115,7 +115,7 @@ GLOBAL_PROTECT(AdminProcCallSpamPrevention) to_chat(usr, "Calling Del() is not allowed") return - if(!target.CanProcCall(procname)) + if(target != GLOBAL_PROC && !target.CanProcCall(procname)) to_chat(usr, "Proccall on [target.type]/proc/[procname] is disallowed!") return var/current_caller = GLOB.AdminProcCaller