summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-04-08 17:57:35 +0200
committerTycho <work.tycho+git@gmail.com>2014-04-08 17:59:50 +0200
commit18793ca568ed1d26d56ba2afc26ae7b8316159f7 (patch)
tree630913acb2b7fcd8cd29afa47d79aaf616f850df
parentFixed Endiannes conversion routines for floats and doubles. (diff)
downloadcuberite-18793ca568ed1d26d56ba2afc26ae7b8316159f7.tar
cuberite-18793ca568ed1d26d56ba2afc26ae7b8316159f7.tar.gz
cuberite-18793ca568ed1d26d56ba2afc26ae7b8316159f7.tar.bz2
cuberite-18793ca568ed1d26d56ba2afc26ae7b8316159f7.tar.lz
cuberite-18793ca568ed1d26d56ba2afc26ae7b8316159f7.tar.xz
cuberite-18793ca568ed1d26d56ba2afc26ae7b8316159f7.tar.zst
cuberite-18793ca568ed1d26d56ba2afc26ae7b8316159f7.zip
-rw-r--r--src/Chunk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp
index 22b33c595..fe9cd9b31 100644
--- a/src/Chunk.cpp
+++ b/src/Chunk.cpp
@@ -2511,7 +2511,7 @@ cChunk * cChunk::GetNeighborChunk(int a_BlockX, int a_BlockZ)
cChunk * cChunk::GetRelNeighborChunk(int a_RelX, int a_RelZ)
{
// If the relative coords are too far away, use the parent's chunk lookup instead:
- if ((a_RelX < 128) || (a_RelX > 128) || (a_RelZ < -128) || (a_RelZ > 128))
+ if ((a_RelX < -128) || (a_RelX > 128) || (a_RelZ < -128) || (a_RelZ > 128))
{
int BlockX = m_PosX * cChunkDef::Width + a_RelX;
int BlockZ = m_PosZ * cChunkDef::Width + a_RelZ;