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:
DeityLink
2020-09-18 20:39:26 +02:00
committed by GitHub
parent 94c72ab70c
commit 7e12bcb49d
27 changed files with 1851 additions and 378 deletions

View File

@@ -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

View File

@@ -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"