mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-23 15:38:08 +00:00
Changed the shuttle controller to a datum, changed the appearance of the labor shuttle, and fixed stackers giving one free stack of each ore.
22 lines
752 B
Plaintext
22 lines
752 B
Plaintext
/obj/machinery/computer/shuttle/labor
|
|
name = "Labor Shuttle Console"
|
|
icon = 'icons/obj/computer.dmi'
|
|
icon_state = "shuttle"
|
|
circuit = /obj/item/weapon/circuitboard/labor_shuttle
|
|
id = "laborcamp"
|
|
req_access = list(access_brig)
|
|
|
|
|
|
/obj/machinery/computer/shuttle/labor/one_way
|
|
name = "Prisoner Shuttle Console"
|
|
desc = "A one-way shuttle console, used to summon the shuttle to the labor camp."
|
|
circuit = /obj/item/weapon/circuitboard/labor_shuttle/one_way
|
|
req_access = list( )
|
|
|
|
/obj/machinery/computer/shuttle/labor/one_way/Topic(href, href_list)
|
|
if(href_list["move"])
|
|
var/datum/shuttle_manager/s = shuttles["laborcamp"]
|
|
if(s.location == /area/shuttle/laborcamp/outpost)
|
|
usr << "\blue Shuttle is already at the outpost."
|
|
return 0
|
|
..() |