summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-09-06 13:32:16 +0200
committerMattes D <github@xoft.cz>2014-09-06 13:32:16 +0200
commit9f9302f470d2adc1ef4018474c4f03a72ca723ed (patch)
treebe4539ba29deedaec6fef71d624b2d1be9e1915c
parentFixed scoreboard loader type checks. (diff)
downloadcuberite-9f9302f470d2adc1ef4018474c4f03a72ca723ed.tar
cuberite-9f9302f470d2adc1ef4018474c4f03a72ca723ed.tar.gz
cuberite-9f9302f470d2adc1ef4018474c4f03a72ca723ed.tar.bz2
cuberite-9f9302f470d2adc1ef4018474c4f03a72ca723ed.tar.lz
cuberite-9f9302f470d2adc1ef4018474c4f03a72ca723ed.tar.xz
cuberite-9f9302f470d2adc1ef4018474c4f03a72ca723ed.tar.zst
cuberite-9f9302f470d2adc1ef4018474c4f03a72ca723ed.zip
-rw-r--r--src/WorldStorage/WSSAnvil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WorldStorage/WSSAnvil.cpp b/src/WorldStorage/WSSAnvil.cpp
index f78ee405b..2500b5dea 100644
--- a/src/WorldStorage/WSSAnvil.cpp
+++ b/src/WorldStorage/WSSAnvil.cpp
@@ -2821,7 +2821,7 @@ bool cWSSAnvil::cMCAFile::GetChunkData(const cChunkCoords & a_Chunk, AString & a
}
unsigned ChunkLocation = ntohl(m_Header[LocalX + 32 * LocalZ]);
unsigned ChunkOffset = ChunkLocation >> 8;
- if (ChunkOffset <= 2)
+ if (ChunkOffset < 2)
{
return false;
}