Adds supply shuttle docking controllers

This commit is contained in:
mwerezak
2014-06-18 21:25:17 -04:00
parent 5006ebde14
commit c28fd0ecb5
3 changed files with 14 additions and 10 deletions

View File

@@ -6,6 +6,7 @@
icon_state = "conveyor0"
name = "conveyor belt"
desc = "A conveyor belt."
layer = 2 // so they appear under stuff
anchored = 1
var/operating = 0 // 1 if running forward, -1 if backwards, 0 if off
var/operable = 1 // true if can operate (no broken segments in this belt run)

View File

@@ -128,8 +128,11 @@ var/global/list/shuttles
//Supply and escape shuttles.
shuttle = new/datum/shuttle/ferry/supply()
shuttle.location = 1
shuttle.warmup_time = 10
shuttle.area_offsite = locate(/area/supply/dock)
shuttle.area_station = locate(/area/supply/station)
shuttle.docking_controller_tag = "supply_shuttle"
shuttle.dock_target_station = "cargo_bay"
shuttles["Supply"] = shuttle
// Admin shuttles.