From 9c8fb046bea9107681a2c2947e4af40a52942eee Mon Sep 17 00:00:00 2001 From: LexManos Date: Wed, 12 Dec 2012 01:02:24 -0800 Subject: [PATCH] Fix ForgeDirection.ROTATION_MATRIX for issue #313 --- common/net/minecraftforge/common/ForgeDirection.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/net/minecraftforge/common/ForgeDirection.java b/common/net/minecraftforge/common/ForgeDirection.java index 29651b766..a44efb6ff 100644 --- a/common/net/minecraftforge/common/ForgeDirection.java +++ b/common/net/minecraftforge/common/ForgeDirection.java @@ -33,12 +33,12 @@ public enum ForgeDirection public static final int[] OPPOSITES = {1, 0, 3, 2, 5, 4, 6}; // Left hand rule rotation matrix for all possible axes of rotation public static final int[][] ROTATION_MATRIX = { - {0, 1, 4, 5, 2, 3, 6}, - {0, 1, 5, 4, 3, 2, 6}, + {0, 1, 4, 5, 3, 2, 6}, + {0, 1, 5, 4, 2, 3, 6}, {5, 4, 2, 3, 0, 1, 6}, {4, 5, 2, 3, 1, 0, 6}, - {2, 3, 0, 1, 4, 5, 6}, - {3, 2, 1, 0, 4, 5, 6}, + {2, 3, 1, 0, 4, 5, 6}, + {3, 2, 0, 1, 4, 5, 6}, {0, 1, 2, 3, 4, 5, 6}, };