mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 00:51:26 +00:00
32 lines
1.0 KiB
Plaintext
32 lines
1.0 KiB
Plaintext
/obj/machinery/computer/shuttle_control/mining
|
|
name = "mining shuttle control console"
|
|
shuttle_tag = "Mining"
|
|
circuit = /obj/item/circuitboard/mining_shuttle
|
|
|
|
/obj/machinery/computer/shuttle_control/engineering
|
|
name = "engineering shuttle control console"
|
|
shuttle_tag = "Engineering"
|
|
circuit = /obj/item/circuitboard/engineering_shuttle
|
|
|
|
/obj/machinery/computer/shuttle_control/research
|
|
name = "research shuttle control console"
|
|
shuttle_tag = "Research Shuttle"
|
|
req_access = list(access_research)
|
|
circuit = /obj/item/circuitboard/research_shuttle
|
|
|
|
/datum/shuttle/autodock/ferry/research_aurora
|
|
var/triggered_away_sites = FALSE
|
|
|
|
/datum/shuttle/autodock/ferry/research_aurora/shuttle_moved()
|
|
. = ..()
|
|
if(!triggered_away_sites)
|
|
for(var/s in SSghostroles.spawners)
|
|
var/datum/ghostspawner/G = SSghostroles.spawners[s]
|
|
if(G.away_site)
|
|
G.enable()
|
|
triggered_away_sites = TRUE
|
|
|
|
/obj/machinery/computer/shuttle_control/merchant
|
|
name = "merchant shuttle control console"
|
|
req_access = list(access_merchant)
|
|
shuttle_tag = "Merchant Shuttle" |