1
0

Fixed uninitialised thingummies

This commit is contained in:
Tiger Wang 2013-08-19 19:43:28 +01:00
parent 53455a10fa
commit de306d9f79

View File

@ -330,7 +330,7 @@ private:
Int64 m_Tick;
sSetBlockQueueItem(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Int64 a_Tick) :
m_RelX(a_RelX), m_RelY(a_RelY), m_RelZ(a_RelZ)
m_RelX(a_RelX), m_RelY(a_RelY), m_RelZ(a_RelZ), m_BlockType(a_BlockType), m_BlockMeta(a_BlockMeta)
{
}
} ;