From fc49ace897fadb4c3d555dd05974c51a97cd9d6a Mon Sep 17 00:00:00 2001 From: Lukas Pioch Date: Mon, 22 May 2017 17:41:41 +0200 Subject: Spawn eggs works again --- src/Protocol/Protocol_1_9.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/Protocol') diff --git a/src/Protocol/Protocol_1_9.cpp b/src/Protocol/Protocol_1_9.cpp index 2a6c924b0..e489b3903 100644 --- a/src/Protocol/Protocol_1_9.cpp +++ b/src/Protocol/Protocol_1_9.cpp @@ -2995,9 +2995,11 @@ void cProtocol_1_9_0::ParseItemMetadata(cItem & a_Item, const AString & a_Metada { if ((NBT.GetType(entitytag) == TAG_String) && (NBT.GetName(entitytag) == "id")) { - eMonsterType MonsterType = cMonster::StringToMobType(NBT.GetString(entitytag)); - // No special method here to convert to the numeric damage value; just cast to the given ID + AString NBTName = NBT.GetString(entitytag); + ReplaceString(NBTName, "minecraft:", ""); + eMonsterType MonsterType = cMonster::StringToMobType(NBTName); a_Item.m_ItemDamage = static_cast(MonsterType); + } } } @@ -3395,7 +3397,7 @@ void cProtocol_1_9_0::WriteItem(cPacketizer & a_Pkt, const cItem & a_Item) if (MonsterType != eMonsterType::mtInvalidType) { Writer.BeginCompound("EntityTag"); - Writer.AddString("id", cMonster::MobTypeToVanillaName(MonsterType)); + Writer.AddString("id", "minecraft:" + cMonster::MobTypeToVanillaNBT(MonsterType)); Writer.EndCompound(); } } -- cgit v1.2.3