Updated fence gate compatibility to 1.12.2

This commit is contained in:
Unknown 2018-12-03 03:34:49 +01:00 committed by unknown
parent f6bb9d270d
commit ac6e0df066

View file

@ -175,7 +175,7 @@ public class JumpBlock {
private static final byte[] mrotNone = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
private static final byte[] mrotRail = { 1, 0, 5, 4, 2, 3, 7, 8, 9, 6, 10, 11, 12, 13, 14, 15 };
private static final byte[] mrotAnvil = { 1, 2, 3, 0, 5, 6, 7, 4, 9, 10, 11, 8, 12, 13, 14, 15 };
private static final byte[] mrotFenceGate = { 1, 0, 2, 3, 5, 6, 7, 4, 8, 9, 10, 11, 12, 13, 14, 15 };
private static final byte[] mrotFenceGate = { 1, 2, 3, 0, 5, 6, 7, 4, 9, 10, 11, 8, 13, 14, 15, 12 };
private static final byte[] mrotPumpkin = { 1, 2, 3, 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 }; // Tripwire hook, Pumpkin, Jack-o-lantern
private static final byte[] mrotEndPortalFrame = { 1, 2, 3, 0, 5, 6, 7, 4, 8, 9, 10, 11, 12, 13, 14, 15 }; // EndPortal, doors (open/closed, base/top)
private static final byte[] mrotCocoa = { 1, 2, 3, 0, 5, 6, 7, 4, 9, 10, 11, 8, 12, 13, 14, 15 };