diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 3f673d304ff..8641c7e026a 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -106,8 +106,6 @@ GLOBAL_LIST_INIT(admin_verbs_event, list( /client/proc/event_manager_panel, /client/proc/modify_goals, /client/proc/outfit_manager, - /client/proc/map_template_load, - /client/proc/map_template_upload, /client/proc/cmd_admin_headset_message, /client/proc/change_human_appearance_admin, /* Allows an admin to change the basic appearance of human-based mobs */ /client/proc/change_human_appearance_self /* Allows the human-based mob itself to change its basic appearance */ @@ -159,6 +157,8 @@ GLOBAL_LIST_INIT(admin_verbs_debug, list( /client/proc/test_snap_UI, /client/proc/cinematic, /proc/machine_upgrade, + /client/proc/map_template_load, + /client/proc/map_template_upload, /client/proc/view_runtimes, /client/proc/admin_serialize, /client/proc/jump_to_ruin, diff --git a/code/modules/admin/verbs/map_template_loadverb.dm b/code/modules/admin/verbs/map_template_loadverb.dm index 71e163d730f..0dc3dfc1791 100644 --- a/code/modules/admin/verbs/map_template_loadverb.dm +++ b/code/modules/admin/verbs/map_template_loadverb.dm @@ -2,8 +2,9 @@ set category = "Debug" set name = "Map template - Place" - if(!check_rights(R_EVENT)) + if(!check_rights(R_DEBUG)) return + var/datum/map_template/template var/map = input(usr, "Choose a Map Template to place at your CURRENT LOCATION","Place Map Template") as null|anything in GLOB.map_templates @@ -36,7 +37,7 @@ set category = "Debug" set name = "Map Template - Upload" - if(!check_rights(R_EVENT)) + if(!check_rights(R_DEBUG)) return var/map = input(usr, "Choose a Map Template to upload to template storage","Upload Map Template") as null|file