diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-14 17:53:05 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-14 17:53:05 +0200 |
commit | d58db08c1b43561f19e13071158d822d5ab9959d (patch) | |
tree | 3203491e9386b9d88afffdab030c4a3f551968c3 /source/Defines.h | |
parent | Crafting window crafting result shift-click handling (diff) | |
download | cuberite-d58db08c1b43561f19e13071158d822d5ab9959d.tar cuberite-d58db08c1b43561f19e13071158d822d5ab9959d.tar.gz cuberite-d58db08c1b43561f19e13071158d822d5ab9959d.tar.bz2 cuberite-d58db08c1b43561f19e13071158d822d5ab9959d.tar.lz cuberite-d58db08c1b43561f19e13071158d822d5ab9959d.tar.xz cuberite-d58db08c1b43561f19e13071158d822d5ab9959d.tar.zst cuberite-d58db08c1b43561f19e13071158d822d5ab9959d.zip |
Diffstat (limited to 'source/Defines.h')
-rw-r--r-- | source/Defines.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/source/Defines.h b/source/Defines.h index 70368373f..6dde8cc8f 100644 --- a/source/Defines.h +++ b/source/Defines.h @@ -23,10 +23,10 @@ enum { BLOCK_FACE_BOTTOM = 0, // Interacting with the bottom face of the block BLOCK_FACE_TOP = 1, // Interacting with the top face of the block - BLOCK_FACE_EAST = 2, // Interacting with the eastern face of the block - BLOCK_FACE_WEST = 3, // Interacting with the western face of the block - BLOCK_FACE_NORTH = 4, // Interacting with the northern face of the block - BLOCK_FACE_SOUTH = 5, // Interacting with the southern face of the block + BLOCK_FACE_NORTH = 2, // Interacting with the northern face of the block + BLOCK_FACE_SOUTH = 3, // Interacting with the southern face of the block + BLOCK_FACE_EAST = 5, // Interacting with the eastern face of the block + BLOCK_FACE_WEST = 4, // Interacting with the western face of the block } ; @@ -114,10 +114,10 @@ inline void AddDirection( int & a_X, int & a_Y, int & a_Z, char a_Direction, boo { case BLOCK_FACE_BOTTOM: a_Y--; break; case BLOCK_FACE_TOP: a_Y++; break; - case BLOCK_FACE_EAST: a_Z--; break; - case BLOCK_FACE_WEST: a_Z++; break; - case BLOCK_FACE_NORTH: a_X--; break; - case BLOCK_FACE_SOUTH: a_X++; break; + case BLOCK_FACE_EAST: a_X++; break; + case BLOCK_FACE_WEST: a_X--; break; + case BLOCK_FACE_NORTH: a_Z--; break; + case BLOCK_FACE_SOUTH: a_Z++; break; default: { ASSERT(!"Unknown direction"); @@ -131,10 +131,10 @@ inline void AddDirection( int & a_X, int & a_Y, int & a_Z, char a_Direction, boo { case BLOCK_FACE_BOTTOM: a_Y++; break; case BLOCK_FACE_TOP: a_Y--; break; - case BLOCK_FACE_EAST: a_Z++; break; - case BLOCK_FACE_WEST: a_Z--; break; - case BLOCK_FACE_NORTH: a_X++; break; - case BLOCK_FACE_SOUTH: a_X--; break; + case BLOCK_FACE_EAST: a_X--; break; + case BLOCK_FACE_WEST: a_X++; break; + case BLOCK_FACE_NORTH: a_Z++; break; + case BLOCK_FACE_SOUTH: a_Z--; break; default: { ASSERT(!"Unknown direction"); |