diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-05-07 12:30:30 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-05-07 12:30:30 +0200 |
commit | d6cb6e0423fe38478c69f5d249882a01d727f0ed (patch) | |
tree | 5058b8901bc482a1711f537618a04be5791c6994 /src/Protocol | |
parent | Rename CanRepairWithItem to CanRepairWithRawMaterial and rename Size() to Count() (diff) | |
download | cuberite-d6cb6e0423fe38478c69f5d249882a01d727f0ed.tar cuberite-d6cb6e0423fe38478c69f5d249882a01d727f0ed.tar.gz cuberite-d6cb6e0423fe38478c69f5d249882a01d727f0ed.tar.bz2 cuberite-d6cb6e0423fe38478c69f5d249882a01d727f0ed.tar.lz cuberite-d6cb6e0423fe38478c69f5d249882a01d727f0ed.tar.xz cuberite-d6cb6e0423fe38478c69f5d249882a01d727f0ed.tar.zst cuberite-d6cb6e0423fe38478c69f5d249882a01d727f0ed.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index bc9aff0c0..c4fb9d424 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -2278,6 +2278,13 @@ void cProtocol172::ParseItemMetadata(cItem & a_Item, const AString & a_Metadata) } break; } + case TAG_Int: + { + if (TagName == "RepairCost") + { + a_Item.m_RepairCost = (UInt16)NBT.GetInt(tag); + } + } default: LOGD("Unimplemented NBT data when parsing!"); break; } } @@ -2451,6 +2458,10 @@ void cProtocol172::cPacketizer::WriteItem(const cItem & a_Item) // Send the enchantments and custom names: cFastNBTWriter Writer; + if (a_Item.m_RepairCost != 0) + { + Writer.AddInt("RepairCost", (Int32)a_Item.m_RepairCost); + } if (!a_Item.m_Enchantments.IsEmpty()) { const char * TagName = (a_Item.m_ItemType == E_ITEM_BOOK) ? "StoredEnchantments" : "ench"; |