1
0
This commit is contained in:
STRWarrior
2014-01-30 21:39:31 +01:00
parent 4d53eb2711
commit 419778a306
2 changed files with 9 additions and 2 deletions

View File

@@ -1876,6 +1876,13 @@ void cWSSAnvil::LoadWolfFromNBT(cEntityList & a_Entities, const cParsedNBT & a_N
{
return;
}
int OwnerIdx = a_NBT.FindChildByName(a_TagIdx, "Owner");
AString OwnerName = a_NBT.GetString(OwnerIdx);
if (OwnerName != "")
{
Monster->SetOwner(OwnerName);
Monster->SetIsTame(true);
}
a_Entities.push_back(Monster.release());
}