Removed weird extra function in manipulator

This commit is contained in:
Henry Mao 2013-01-12 22:23:35 +08:00
parent 055e7623b4
commit 7f08eaa0ef

View file

@ -14,7 +14,7 @@ public class RenderManipulator extends RenderImprintable
private void renderAModelAt(TileEntityManipulator tileEntity, double x, double y, double z, float f)
{
int face = tileEntity.getBeltDirection().ordinal();
int face = tileEntity.getDirection().ordinal();
GL11.glPushMatrix();
GL11.glTranslatef((float) x + 0.5F, (float) y + 1.5F, (float) z + 0.5F);