Uplink and Adminverb Tweaks

- Tweaks the proc for Virgo uplink beacons to not give away information about traitors
- Removes the Void Cell from antag uplinks
- Adds a combat defibrillator for Mercenaries
- Adds the cabin shelter capsule to uplinks
- Adds some stuff for admin use of uplinks
- Fixes bug with adminspawn ERT job not getting PDAs
- Adds an admin command to set up an uplink on a character
- Fixes Retired Admin to work properly
- Splits off VORE's adminverb list for improved downstream support
- Fixes retired staff not being able to talk in staff chats
This commit is contained in:
Unknown
2021-02-02 00:45:28 -05:00
parent cd45afa513
commit e4b0f292f8
12 changed files with 617 additions and 17 deletions
+4 -4
View File
@@ -11,9 +11,9 @@
log_adminsay(msg,src)
//VOREStation Edit Start - Adds R_EVENT
//VOREStation Edit Start - Adds R_STEALTH
for(var/client/C in GLOB.admins)
if(check_rights(R_ADMIN|R_EVENT))
if(check_rights(R_ADMIN|R_STEALTH))
to_chat(C, "<span class='admin_channel'>" + create_text_tag("admin", "ADMIN:", C) + " <span class='name'>[key_name(usr, 1)]</span>([admin_jump_link(mob, src)]): <span class='message'>[msg]</span></span>")
//VOREStation Edit End
@@ -24,7 +24,7 @@
set name = "Msay"
set hidden = 1
if(!check_rights(R_ADMIN|R_MOD|R_SERVER|R_EVENT)) //VOREStation Edit
if(!check_rights(R_ADMIN|R_MOD|R_SERVER|R_STEALTH)) //VOREStation Edit
return
msg = sanitize(msg)
@@ -47,7 +47,7 @@
set name = "Esay"
set hidden = 1
if(!check_rights(R_ADMIN|R_MOD|R_EVENT|R_SERVER|R_EVENT))
if(!check_rights(R_ADMIN|R_MOD|R_EVENT|R_SERVER|R_STEALTH)) //VOREStation Edit
return
msg = sanitize(msg)