mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-29 18:31:03 +00:00
* upports server maint subsystem * fix runtime in admin z narrate * . * sorts them verbs * . * . * Update code/controllers/subsystems/statpanel.dm Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> * Update code/controllers/subsystems/server_maint.dm Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com> --------- Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
15 lines
554 B
Plaintext
15 lines
554 B
Plaintext
/datum/admins/proc/set_uplink(mob/living/carbon/human/H as mob)
|
|
set category = "Debug.Events"
|
|
set name = "Set Uplink"
|
|
set desc = "Allows admins to set up an uplink on a character. This will be required for a character to use telecrystals."
|
|
set popup_menu = FALSE
|
|
|
|
if(check_rights(R_ADMIN|R_DEBUG))
|
|
traitors.spawn_uplink(H)
|
|
H.mind.tcrystals = DEFAULT_TELECRYSTAL_AMOUNT
|
|
H.mind.accept_tcrystals = 1
|
|
var/msg = "[key_name(usr)] has given [H.ckey] an uplink."
|
|
message_admins(msg)
|
|
else
|
|
to_chat(usr, "You do not have access to this command.")
|