mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
Centcomm Orders. Remember those? How about this! (#27751)
* yup * eyup * wtf * eh * oh boy oh boy * huh * woops * aight * tweaks * sanity * derp derp derp * locate * Injector Defines * fixes * STRONK
This commit is contained in:
@@ -131,6 +131,7 @@ var/list/admin_verbs_fun = list(
|
||||
/client/proc/set_teleport_pref,
|
||||
/client/proc/deadchat_singularity,
|
||||
/client/proc/view_all_rods,
|
||||
/client/proc/add_centcomm_order,
|
||||
)
|
||||
var/list/admin_verbs_spawn = list(
|
||||
/datum/admins/proc/spawn_atom, // Allows us to spawn instances
|
||||
|
||||
@@ -1319,6 +1319,18 @@ client/proc/check_convertables()
|
||||
|
||||
error_cache.show_to(src)
|
||||
|
||||
/client/proc/add_centcomm_order()
|
||||
set category = "Fun"
|
||||
set name = "Central Command Request"
|
||||
set desc = "Send a Central Command Request"
|
||||
|
||||
if (!check_rights(R_FUN))
|
||||
return
|
||||
|
||||
var/ordertype = input("Select a Request.","Central Command Request",1) as null|anything in (subtypesof(/datum/centcomm_order) - /datum/centcomm_order/per_unit)
|
||||
if (ordertype)
|
||||
SSsupply_shuttle.add_centcomm_order(new ordertype)
|
||||
|
||||
/client/proc/emergency_shuttle_panel()
|
||||
set name = "Emergency Shuttle Panel"
|
||||
set category = "Debug"
|
||||
|
||||
Reference in New Issue
Block a user