mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-07-19 02:56:14 +01:00
Adds Supply Fax
Quartermaster now has fax access and a fax machine. Fax machines have a third admin channel, "Supply" for special requests like three thousand mankinis or a Phazon, up to the admins to accept or deny requests, and deduct cargo points if they'd like to.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
var/list/obj/machinery/photocopier/faxmachine/allfaxes = list()
|
||||
var/list/admin_departments = list("[boss_name]", "Sol Government")
|
||||
var/list/admin_departments = list("[boss_name]", "Sol Government", "Supply")
|
||||
var/list/alldepartments = list()
|
||||
|
||||
var/list/adminfaxes = list() //cache for faxes that have been sent to admins
|
||||
@@ -9,7 +9,7 @@ var/list/adminfaxes = list() //cache for faxes that have been sent to admins
|
||||
icon = 'icons/obj/library.dmi'
|
||||
icon_state = "fax"
|
||||
insert_anim = "faxsend"
|
||||
req_one_access = list(access_lawyer, access_heads, access_armory) //Warden needs to be able to Fax solgov too.
|
||||
req_one_access = list(access_lawyer, access_heads, access_armory, access_qm)
|
||||
|
||||
use_power = 1
|
||||
idle_power_usage = 30
|
||||
@@ -201,6 +201,8 @@ var/list/adminfaxes = list() //cache for faxes that have been sent to admins
|
||||
if ("Sol Government")
|
||||
message_admins(sender, "SOL GOVERNMENT FAX", rcvdcopy, "CentcommFaxReply", "#1F66A0")
|
||||
//message_admins(sender, "SOL GOVERNMENT FAX", rcvdcopy, "SolGovFaxReply", "#1F66A0")
|
||||
if ("Supply")
|
||||
message_admins(sender, "[uppertext(boss_short)] SUPPLY FAX", rcvdcopy, "CentcommFaxReply", "#5F4519")
|
||||
|
||||
sendcooldown = 1800
|
||||
sleep(50)
|
||||
|
||||
Reference in New Issue
Block a user