diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index aa87f157173c..2270685c0cf6 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -93,8 +93,7 @@ GLOBAL_LIST_INIT(admin_verbs_admin, list( /datum/admins/proc/admin_force_selfdestruct, /client/proc/check_round_statistics, /client/proc/force_teleporter, - /client/proc/matrix_editor, - /datum/admins/proc/open_shuttlepanel + /client/proc/matrix_editor )) GLOBAL_LIST_INIT(admin_verbs_ban, list( @@ -143,6 +142,7 @@ GLOBAL_LIST_INIT(admin_verbs_minor_event, list( /client/proc/toggle_hardcore_perma, /client/proc/toggle_bypass_joe_restriction, /client/proc/toggle_joe_respawns, + /datum/admins/proc/open_shuttlepanel )) GLOBAL_LIST_INIT(admin_verbs_major_event, list( @@ -220,6 +220,7 @@ GLOBAL_LIST_INIT(admin_verbs_debug, list( /datum/admins/proc/view_href_log, /*shows the server HREF log for this round*/ /datum/admins/proc/view_tgui_log, /*shows the server TGUI log for this round*/ /client/proc/admin_blurb, + /datum/admins/proc/open_shuttlepanel, )) GLOBAL_LIST_INIT(admin_verbs_debug_advanced, list( diff --git a/code/modules/admin/tabs/event_tab.dm b/code/modules/admin/tabs/event_tab.dm index a155f2a37614..fa0f43780031 100644 --- a/code/modules/admin/tabs/event_tab.dm +++ b/code/modules/admin/tabs/event_tab.dm @@ -718,7 +718,7 @@ set name = "Toggle Remote Control" set category = "Admin.Events" - if(!check_rights(R_SPAWN)) + if(!check_rights(R_MOD|R_DEBUG)) return remote_control = !remote_control diff --git a/code/modules/admin/verbs/shuttlepanel.dm b/code/modules/admin/verbs/shuttlepanel.dm index 9ae9cedd7992..72d69511aff6 100644 --- a/code/modules/admin/verbs/shuttlepanel.dm +++ b/code/modules/admin/verbs/shuttlepanel.dm @@ -3,7 +3,7 @@ set name = "Shuttle Manipulator" set desc = "Opens the shuttle manipulator UI." - if(!check_rights(R_ADMIN|R_DEBUG|R_HOST)) + if(!check_rights(R_EVENT|R_DEBUG|R_HOST)) return SSshuttle.tgui_interact(usr)