From fa8a37f5cdac82993b056567fca32e3e2a64b43d Mon Sep 17 00:00:00 2001 From: Razgriz Date: Mon, 3 Apr 2023 19:04:29 -0700 Subject: [PATCH] Also this to let staff respond to ahelps --- code/modules/admin/verbs/adminpm.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/verbs/adminpm.dm b/code/modules/admin/verbs/adminpm.dm index 4dbc2a2307..f093baa1da 100644 --- a/code/modules/admin/verbs/adminpm.dm +++ b/code/modules/admin/verbs/adminpm.dm @@ -5,7 +5,7 @@ /client/proc/cmd_admin_pm_context(mob/M in mob_list) set category = null set name = "Admin PM Mob" - if(!check_rights(R_ADMIN)) + if(!holder) //CHOMP Edit: Reverting this to let all staff respond to ahelps to_chat(src, "Error: Admin-PM-Context: Only administrators may use this command.") return if( !ismob(M) || !M.client ) @@ -17,7 +17,7 @@ /client/proc/cmd_admin_pm_panel() set category = "Admin" set name = "Admin PM" - if(!check_rights(R_ADMIN)) + if(!holder) //CHOMP Edit: Reverting this to let all staff respond to ahelps to_chat(src, "Error: Admin-PM-Panel: Only administrators may use this command.") return var/list/client/targets[0] @@ -285,4 +285,4 @@ GLOB.stealthminID["IRCKEY"] = stealth return stealth -#undef IRCREPLYCOUNT \ No newline at end of file +#undef IRCREPLYCOUNT