1
0

SkyLight defaults to 0xFF

This commit is contained in:
Tycho 2014-05-11 18:24:21 +01:00
parent 79ab80718e
commit 9568c223ff

View File

@ -300,7 +300,7 @@ void cChunkBuffer::ZeroSection(cChunkBuffer::sChunkSection * ptr) const
memset(ptr->m_BlockTypes,0x00,sizeof(ptr->m_BlockTypes));
memset(ptr->m_BlockMeta,0x00,sizeof(ptr->m_BlockMeta));
memset(ptr->m_BlockLight,0x00,sizeof(ptr->m_BlockLight));
memset(ptr->m_BlockSkyLight,0x00,sizeof(ptr->m_BlockSkyLight));
memset(ptr->m_BlockSkyLight,0xFF,sizeof(ptr->m_BlockSkyLight));
}