Fixed that bug, @BevoLJ!

This commit is contained in:
Aidan Brady 2013-11-30 13:06:44 -05:00
parent 1be0d218af
commit 96d2a12948

View file

@ -526,11 +526,21 @@ public final class MekanismUtils
}
else if(blockFacing == 4)
{
return getRight(side).ordinal();
if(side == 2 || side == 3)
{
return getRight(side).ordinal();
}
return getLeft(side).ordinal();
}
else if(blockFacing == 5)
{
return getLeft(side).ordinal();
if(side == 2 || side == 3)
{
return getLeft(side).ordinal();
}
return getRight(side).ordinal();
}
return side;