From 65c7a3760a938b9849a36aa890740ba1cc521b80 Mon Sep 17 00:00:00 2001 From: Rseifert Date: Wed, 6 Feb 2013 15:02:37 -0500 Subject: [PATCH] updated comments on last --- .../assemblyline/common/machine/crane/CraneManager.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/minecraft/assemblyline/common/machine/crane/CraneManager.java b/src/minecraft/assemblyline/common/machine/crane/CraneManager.java index b6bb0941..b5c609b7 100644 --- a/src/minecraft/assemblyline/common/machine/crane/CraneManager.java +++ b/src/minecraft/assemblyline/common/machine/crane/CraneManager.java @@ -27,6 +27,8 @@ public class CraneManager public void mapRails() { //TODO figure out what i'm going to use as the center point of this mapping first + //Most likely it will be the crane head itself, but this might be trigger by + //the crane controller. } /** * finds if the rail at this location is a rail and lines up with the current direction of the rails @@ -37,6 +39,7 @@ public class CraneManager { int id = world.getBlockId(loc.intX(), loc.intY(), loc.intZ()); int meta = world.getBlockMetadata(loc.intX(), loc.intY(), loc.intZ()); + //might have to change this meta later if i go with a more complex render that will connect to walls ForgeDirection facing = ForgeDirection.getOrientation(meta); if (id == AssemblyLine.blockCraneParts.blockID && (dir == facing || dir == facing.getOpposite()))