From f4bc8acaedbcec4d34bc447da90811cb691a777d Mon Sep 17 00:00:00 2001 From: peoplearestrange Date: Tue, 4 Feb 2020 03:33:39 +0000 Subject: [PATCH] Changes Category Grant full access = Debug Assume direct control = Admin - Game Give direct control = Admin - Game --- code/modules/admin/verbs/debug.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index e8578b20f31..0f2816d6cc1 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -185,7 +185,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that SSblackbox.record_feedback("tally", "admin_verb", 1, "Make Powernets") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/proc/cmd_admin_grantfullaccess(mob/M in GLOB.mob_list) - set category = "Admin" + set category = "Debug" set name = "Grant Full Access" if(!SSticker.HasRoundStarted()) @@ -227,7 +227,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that message_admins("[key_name_admin(usr)] has granted [M.key] full access.") /client/proc/cmd_assume_direct_control(mob/M in GLOB.mob_list) - set category = "Admin" + set category = "Admin - Game" set name = "Assume direct control" set desc = "Direct intervention" @@ -248,7 +248,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that SSblackbox.record_feedback("tally", "admin_verb", 1, "Assume Direct Control") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/proc/cmd_give_direct_control(mob/M in GLOB.mob_list) - set category = "Admin" + set category = "Admin - Game" set name = "Give direct control" if(!M)