The world can now truly be made higher by incrementing cChunk::c_ChunkHeight to 256. !!HOWEVER THIS WILL DESTROY YOUR SAVED WORLD!!
git-svn-id: http://mc-server.googlecode.com/svn/trunk@357 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
@@ -1041,7 +1041,7 @@ void cChunk::SendBlockTo( int a_X, int a_Y, int a_Z, cClientHandle* a_Client )
|
||||
unsigned int index = MakeIndex( a_X, a_Y, a_Z );
|
||||
cPacket_BlockChange BlockChange;
|
||||
BlockChange.m_PosX = a_X + m_PosX*c_ChunkWidth;
|
||||
BlockChange.m_PosY = (char)(a_Y + m_PosY*c_ChunkHeight);
|
||||
BlockChange.m_PosY = (unsigned char)(a_Y + m_PosY*c_ChunkHeight);
|
||||
BlockChange.m_PosZ = a_Z + m_PosZ*c_ChunkWidth;
|
||||
if( index != INDEX_OUT_OF_RANGE )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user