This commit is contained in:
UserU
2022-10-21 15:54:17 -07:00
parent 878e15c44e
commit a5a30aadba
4 changed files with 19 additions and 0 deletions

View File

@@ -10,10 +10,16 @@
var/skip_act = FALSE
var/tgui_subtemplate = "ShuttleControlConsoleDefault"
var/ai_control = TRUE //ChompStation Edit - Unnecessary nuisance that causes issues.
/obj/machinery/computer/shuttle_control/attack_hand(user as mob)
if(..(user))
return
//VOREStation Addition Start
if(!ai_control && issilicon(user))
to_chat(user, "<span class='warning'>Access Denied.</span>")
return TRUE
//VOREStation Addition End
//src.add_fingerprint(user) //shouldn't need fingerprints just for looking at it.
if(!allowed(user))

View File

@@ -34,6 +34,7 @@
name = "belter control console"
req_one_access = list(access_mining, access_medical_equip) //Allows xenoarch, miners AND doctors to use it.
shuttle_tag = "Belter" //The scanning console needs to enable/disable this at will.
ai_control = TRUE
/obj/machinery/computer/shuttle_control/mining
name = "mining elevator control console"