1
0
Fork 0

Fix MagmaCube save.

This commit is contained in:
Howaner 2014-05-07 12:43:21 +02:00
parent e5b42b9f16
commit 80bcc43c7b
2 changed files with 9 additions and 3 deletions

View File

@ -490,7 +490,7 @@ void cNBTChunkSerializer::AddMonsterEntity(cMonster * a_Monster)
}
case cMonster::mtMagmaCube:
{
m_Writer.AddByte("Size", ((const cMagmaCube *)a_Monster)->GetSize());
m_Writer.AddInt("Size", ((const cMagmaCube *)a_Monster)->GetSize());
break;
}
case cMonster::mtSheep:

View File

@ -1974,7 +1974,10 @@ void cWSSAnvil::LoadMagmaCubeFromNBT(cEntityList & a_Entities, const cParsedNBT
{
int SizeIdx = a_NBT.FindChildByName(a_TagIdx, "Size");
if (SizeIdx < 0) { return; }
if (SizeIdx < 0)
{
return;
}
int Size = a_NBT.GetInt(SizeIdx);
@ -2132,7 +2135,10 @@ void cWSSAnvil::LoadSlimeFromNBT(cEntityList & a_Entities, const cParsedNBT & a_
{
int SizeIdx = a_NBT.FindChildByName(a_TagIdx, "Size");
if (SizeIdx < 0) { return; }
if (SizeIdx < 0)
{
return;
}
int Size = a_NBT.GetInt(SizeIdx);