map template load/unload require R_DEBUG now

This commit is contained in:
Kyep
2020-08-11 21:45:19 -07:00
parent 3018e1109e
commit 298c4ee86b
2 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -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,
@@ -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