diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-10 23:10:15 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-10 23:10:15 +0100 |
commit | f90a8928e78702b393ca2f688da6ca197eb94256 (patch) | |
tree | 1e797b311c2cd37e7d756d19701c27c9eb7b2765 /source/cChunk.h | |
parent | Anvil support: compatible with both chunk orderings (diff) | |
download | cuberite-f90a8928e78702b393ca2f688da6ca197eb94256.tar cuberite-f90a8928e78702b393ca2f688da6ca197eb94256.tar.gz cuberite-f90a8928e78702b393ca2f688da6ca197eb94256.tar.bz2 cuberite-f90a8928e78702b393ca2f688da6ca197eb94256.tar.lz cuberite-f90a8928e78702b393ca2f688da6ca197eb94256.tar.xz cuberite-f90a8928e78702b393ca2f688da6ca197eb94256.tar.zst cuberite-f90a8928e78702b393ca2f688da6ca197eb94256.zip |
Diffstat (limited to '')
-rw-r--r-- | source/cChunk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cChunk.h b/source/cChunk.h index 9a129ba31..55210a064 100644 --- a/source/cChunk.h +++ b/source/cChunk.h @@ -29,7 +29,7 @@ It will help us when the new chunk format comes out and we need to patch everyth // Used to smoothly convert to new axis ordering. One will be removed when deemed stable.
#define AXIS_ORDER_YZX 1 // Original (1.1-)
#define AXIS_ORDER_XZY 2 // New (1.2+)
-#define AXIS_ORDER AXIS_ORDER_YZX
+#define AXIS_ORDER AXIS_ORDER_XZY
|