diff --git a/code/game/response_team.dm b/code/game/response_team.dm index 44bb401fca3..8901742ca88 100644 --- a/code/game/response_team.dm +++ b/code/game/response_team.dm @@ -9,7 +9,7 @@ var/can_call_ert /client/proc/response_team() set name = "Dispatch Emergency Response Team" - set category = "Special Verbs" + set category = "Event" set desc = "Send an emergency response team to the station" if(!holder) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index b08e561eb4d..dc3c911cf1c 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -693,7 +693,7 @@ var/global/nologevent = 0 feedback_add_details("admin_verb","TE") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /datum/admins/proc/toggleAI() - set category = "Server" + set category = "Event" set desc="People can't be AI" set name="Toggle AI" config.allow_ai = !( config.allow_ai ) @@ -720,7 +720,7 @@ var/global/nologevent = 0 feedback_add_details("admin_verb","TR") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /datum/admins/proc/toggle_aliens() - set category = "Server" + set category = "Event" set desc="Toggle alien mobs" set name="Toggle Aliens" aliens_allowed = !aliens_allowed @@ -730,7 +730,7 @@ var/global/nologevent = 0 /datum/admins/proc/toggle_space_ninja() - set category = "Server" + set category = "Event" set desc="Toggle space ninjas spawning." set name="Toggle Space Ninjas" toggle_space_ninja = !toggle_space_ninja diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 2b8c96a1109..e553e47b9b5 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -40,7 +40,6 @@ var/list/admin_verbs_admin = list( /client/proc/jumptoturf, /*allows us to jump to a specific turf*/ /client/proc/admin_call_shuttle, /*allows us to call the emergency shuttle*/ /client/proc/admin_cancel_shuttle, /*allows us to cancel the emergency shuttle, sending it back to centcomm*/ - /client/proc/cmd_admin_create_centcom_report, /client/proc/check_words, /*displays cult-words*/ /client/proc/check_ai_laws, /*shows AI and borg laws*/ /client/proc/admin_memo, /*admin memo system. show/delete/write. +SERVER needed to delete admin memos of others*/ @@ -58,7 +57,6 @@ var/list/admin_verbs_admin = list( /client/proc/cmd_mod_say, /datum/admins/proc/show_player_info, /client/proc/free_slot, /*frees slot for chosen job*/ - /client/proc/cmd_admin_change_custom_event, /client/proc/cmd_admin_rejuvenate, /client/proc/toggleattacklogs, /client/proc/toggledebuglogs, @@ -93,10 +91,12 @@ var/list/admin_verbs_event = list( /client/proc/toggle_random_events, /client/proc/editappear, /client/proc/toggle_random_events, + /client/proc/cmd_admin_change_custom_event, /datum/admins/proc/access_news_network, /*allows access of newscasters*/ /client/proc/cmd_admin_direct_narrate, /*send text directly to a player with no padding. Useful for narratives and fluff-text*/ /client/proc/cmd_admin_world_narrate, /*sends text to all players with no padding*/ /client/proc/response_team, // Response Teams admin verb + /client/proc/cmd_admin_create_centcom_report, /client/proc/gib_money // /vg/ ) @@ -130,6 +130,9 @@ var/list/admin_verbs_server = list( /client/proc/cmd_admin_direct_narrate, /*send text directly to a player with no padding. Useful for narratives and fluff-text*/ /client/proc/cmd_admin_world_narrate, /*sends text to all players with no padding*/ /client/proc/toggle_random_events, + /client/proc/one_click_antag, + /client/proc/cmd_admin_change_custom_event, + /client/proc/cmd_admin_create_centcom_report, /client/proc/response_team // Response Teams admin verb ) diff --git a/code/modules/admin/verbs/custom_event.dm b/code/modules/admin/verbs/custom_event.dm index 7f0c6724eff..56e8fe30217 100644 --- a/code/modules/admin/verbs/custom_event.dm +++ b/code/modules/admin/verbs/custom_event.dm @@ -1,6 +1,6 @@ // verb for admins to set custom event /client/proc/cmd_admin_change_custom_event() - set category = "OOC" + set category = "Event" set name = "Change Custom Event" if(!holder) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 4d0395b3e95..e9bd75dd44e 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -363,7 +363,7 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that feedback_add_details("admin_verb","MPWN") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/proc/cmd_debug_tog_aliens() - set category = "Server" + set category = "Event" set name = "Toggle Aliens" aliens_allowed = !aliens_allowed diff --git a/code/modules/admin/verbs/one_click_antag.dm b/code/modules/admin/verbs/one_click_antag.dm index 0fae0047ade..20db8a06135 100644 --- a/code/modules/admin/verbs/one_click_antag.dm +++ b/code/modules/admin/verbs/one_click_antag.dm @@ -1,7 +1,9 @@ client/proc/one_click_antag() set name = "Create Antagonist" set desc = "Auto-create an antagonist of your choice" - set category = "Admin" + set category = "Event" + + if(!check_rights(R_SERVER|R_EVENT)) return if(holder) holder.one_click_antag()