* Added ore boxes to the gulag, and added a conveyor belt which goes outside and has a loading machine, which will take the ore from the orebox.

* Added sprites for the stacking machine going in the reverse direction, just set the dir to 1 instead of 2.
 * Added prison intercoms which will not broadcast until someone hacks it. Added these intercoms in the gulag, the perma brig and the brig cells.
 * When a prisoner has received enough points for freedom, if they try to move the shuttle, or open the middle door, while someone is on it they will get an error message. This way there is no way for a free'd prisoner to release their fellow prisoners once they have reached their point target. The shuttle will depart right away when you call the shuttle from the stacking console, to stop prisoners from getting on while it departs.
This commit is contained in:
Giacomand
2013-12-20 22:09:06 +00:00
parent 046714d864
commit 47545f439e
6 changed files with 75 additions and 46 deletions
+2 -2
View File
@@ -10,10 +10,10 @@ datum/shuttle_manager/New(var/area, var/delay) //Create a new shuttle manager fo
tickstomove = delay
datum/shuttle_manager/proc/move_shuttle()
datum/shuttle_manager/proc/move_shuttle(var/override_delay)
if(moving) return 0
moving = 1
spawn(tickstomove*10)
spawn(override_delay == null ? tickstomove*10 : override_delay)
var/area/shuttle/fromArea
var/area/shuttle/toArea
fromArea = locate(location) //the location of the shuttle