diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 7cef224af7e..7d77a88c777 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -12,7 +12,7 @@ ///////////////////////////////////////////////////////////////////////////////////////////////Panels /datum/admins/proc/show_player_panel(mob/M in GLOB.mob_list) - set category = "Admin" + set category = "Admin - Game" set name = "Show Player Panel" set desc="Edit player (respawn, ban, heal, etc)" @@ -192,7 +192,7 @@ /datum/admins/proc/access_news_network() //MARKER - set category = "Fun" + set category = "Admin - Events" set name = "Access Newscaster Network" set desc = "Allows you to view, add and edit news feeds." @@ -505,7 +505,7 @@ /datum/admins/proc/announce() - set category = "Special Verbs" + set category = "Administration" set name = "Announce" set desc="Announce your desires to the world" if(!check_rights(0)) @@ -520,7 +520,7 @@ SSblackbox.record_feedback("tally", "admin_verb", 1, "Announce") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /datum/admins/proc/set_admin_notice() - set category = "Special Verbs" + set category = "Administration" set name = "Set Admin Notice" set desc ="Set an announcement that appears to everyone who joins the server. Only lasts this round" if(!check_rights(0)) @@ -562,7 +562,7 @@ SSblackbox.record_feedback("nested tally", "admin_toggle", 1, list("Toggle Dead OOC", "[GLOB.dooc_allowed ? "Enabled" : "Disabled"]")) //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /datum/admins/proc/startnow() - set category = "Server" + set category = "Admin - Events" set desc="Start the round RIGHT NOW" set name="Start Now" if(SSticker.current_state == GAME_STATE_PREGAME || SSticker.current_state == GAME_STATE_STARTUP) @@ -634,7 +634,7 @@ SSblackbox.record_feedback("nested tally", "admin_toggle", 1, list("Toggle Respawn", "[!new_nores ? "Enabled" : "Disabled"]")) //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /datum/admins/proc/delay() - set category = "Server" + set category = "Admin - Events" set desc="Delay the game start" set name="Delay pre-game" @@ -655,7 +655,7 @@ SSblackbox.record_feedback("tally", "admin_verb", 1, "Delay Game Start") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /datum/admins/proc/unprison(mob/M in GLOB.mob_list) - set category = "Admin" + set category = "Administration" set name = "Unprison" if (is_centcom_level(M.z)) SSjob.SendToLateJoin(M) @@ -740,7 +740,7 @@ /datum/admins/proc/show_traitor_panel(mob/M in GLOB.mob_list) - set category = "Admin" + set category = "Admin - Game" set desc = "Edit mobs's memory and role" set name = "Show Traitor Panel"