summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-02-01 10:22:46 +0100
committerMattes D <github@xoft.cz>2014-02-01 10:22:46 +0100
commitaf4b1cd659efe9883b258e3c779751247ea8289c (patch)
tree7a9a967a1f9442395043a540c4de229fb4397340
parentContributors now match real life, and are alpha-sorted. (diff)
parentMerge remote-tracking branch 'upstream/master' (diff)
downloadcuberite-af4b1cd659efe9883b258e3c779751247ea8289c.tar
cuberite-af4b1cd659efe9883b258e3c779751247ea8289c.tar.gz
cuberite-af4b1cd659efe9883b258e3c779751247ea8289c.tar.bz2
cuberite-af4b1cd659efe9883b258e3c779751247ea8289c.tar.lz
cuberite-af4b1cd659efe9883b258e3c779751247ea8289c.tar.xz
cuberite-af4b1cd659efe9883b258e3c779751247ea8289c.tar.zst
cuberite-af4b1cd659efe9883b258e3c779751247ea8289c.zip
-rw-r--r--src/WorldStorage/WSSAnvil.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WorldStorage/WSSAnvil.cpp b/src/WorldStorage/WSSAnvil.cpp
index 02396bb16..63999add3 100644
--- a/src/WorldStorage/WSSAnvil.cpp
+++ b/src/WorldStorage/WSSAnvil.cpp
@@ -1886,6 +1886,12 @@ void cWSSAnvil::LoadWolfFromNBT(cEntityList & a_Entities, const cParsedNBT & a_N
Monster->SetIsTame(true);
}
}
+ int SittingIdx = a_NBT.FindChildByName(a_TagIdx, "Sitting");
+ if (SittingIdx > 0)
+ {
+ bool IsSitting = (a_NBT.GetByte(SittingIdx) > 0);
+ Monster->SetIsSitting(IsSitting);
+ }
a_Entities.push_back(Monster.release());
}