Slightly updated the mining consoles, so they can interface with a machine in any direction.

Added proper ('proper') open and broken sprites for the new Odysseus mech.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2849 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
petethegoat@gmail.com
2011-12-29 04:42:51 +00:00
parent cb44f5d724
commit 2872b940de
3 changed files with 4 additions and 2 deletions

View File

@@ -7,11 +7,12 @@
density = 1
anchored = 1
var/obj/machinery/mineral/processing_unit/machine = null
var/machinedir = EAST
/obj/machinery/mineral/processing_unit_console/New()
..()
spawn(7)
src.machine = locate(/obj/machinery/mineral/processing_unit, get_step(src, EAST))
src.machine = locate(/obj/machinery/mineral/processing_unit, get_step(src, machinedir))
if (machine)
machine.CONSOLE = src
else