Fixed sitting tag.
This commit is contained in:
parent
2a52b390c0
commit
a1c36c18e0
@ -455,7 +455,7 @@ void cNBTChunkSerializer::AddMonsterEntity(cMonster * a_Monster)
|
|||||||
case cMonster::mtWolf:
|
case cMonster::mtWolf:
|
||||||
{
|
{
|
||||||
m_Writer.AddString("Owner", ((const cWolf *)a_Monster)->GetOwner());
|
m_Writer.AddString("Owner", ((const cWolf *)a_Monster)->GetOwner());
|
||||||
m_Writer.AddByte("IsSitting", (((const cWolf *)a_Monster)->IsSitting() ? 1 : 0));
|
m_Writer.AddByte("Sitting", (((const cWolf *)a_Monster)->IsSitting() ? 1 : 0));
|
||||||
m_Writer.AddInt("CollarColor", ((const cWolf *)a_Monster)->GetCollarColor());
|
m_Writer.AddInt("CollarColor", ((const cWolf *)a_Monster)->GetCollarColor());
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1886,11 +1886,11 @@ void cWSSAnvil::LoadWolfFromNBT(cEntityList & a_Entities, const cParsedNBT & a_N
|
|||||||
Monster->SetIsTame(true);
|
Monster->SetIsTame(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
int IsSittingIdx = a_NBT.FindChildByName(a_TagIdx, "IsSitting");
|
int SittingIdx = a_NBT.FindChildByName(a_TagIdx, "Sitting");
|
||||||
if (IsSittingIdx > 0)
|
if (SittingIdx > 0)
|
||||||
{
|
{
|
||||||
bool IsSitting = ((a_NBT.GetByte(IsSittingIdx) == 1) ? true : false);
|
bool Sitting = ((a_NBT.GetByte(SittingIdx) == 1) ? true : false);
|
||||||
Monster->SetIsSitting(IsSitting);
|
Monster->SetIsSitting(Sitting);
|
||||||
}
|
}
|
||||||
int CollarColorIdx = a_NBT.FindChildByName(a_TagIdx, "CollarColor");
|
int CollarColorIdx = a_NBT.FindChildByName(a_TagIdx, "CollarColor");
|
||||||
if (CollarColorIdx > 0)
|
if (CollarColorIdx > 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user