1
0

Fixed block area height check.

The block area couldn't be read up to chunk height.
This commit is contained in:
madmaxoft 2013-12-25 19:38:52 +01:00
parent e42008aa84
commit c2befd9777

View File

@ -301,10 +301,10 @@ bool cBlockArea::Read(cWorld * a_World, int a_MinBlockX, int a_MaxBlockX, int a_
LOGWARNING("%s: MaxBlockY less than zero, adjusting to zero", __FUNCTION__); LOGWARNING("%s: MaxBlockY less than zero, adjusting to zero", __FUNCTION__);
a_MaxBlockY = 0; a_MaxBlockY = 0;
} }
else if (a_MaxBlockY >= cChunkDef::Height) else if (a_MaxBlockY > cChunkDef::Height)
{ {
LOGWARNING("%s: MaxBlockY more than chunk height, adjusting to chunk height", __FUNCTION__); LOGWARNING("%s: MaxBlockY more than chunk height, adjusting to chunk height", __FUNCTION__);
a_MaxBlockY = cChunkDef::Height - 1; a_MaxBlockY = cChunkDef::Height;
} }
// Allocate the needed memory: // Allocate the needed memory: