diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-05-07 21:32:52 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-05-07 21:32:52 +0200 |
commit | df71cc931b793dc88f93bc44618d910b0bb978ee (patch) | |
tree | 1df6042ec1c14ddc8594b8edafbb1afc5e815729 /src | |
parent | Send item back to the client when the item get damage. (diff) | |
download | cuberite-df71cc931b793dc88f93bc44618d910b0bb978ee.tar cuberite-df71cc931b793dc88f93bc44618d910b0bb978ee.tar.gz cuberite-df71cc931b793dc88f93bc44618d910b0bb978ee.tar.bz2 cuberite-df71cc931b793dc88f93bc44618d910b0bb978ee.tar.lz cuberite-df71cc931b793dc88f93bc44618d910b0bb978ee.tar.xz cuberite-df71cc931b793dc88f93bc44618d910b0bb978ee.tar.zst cuberite-df71cc931b793dc88f93bc44618d910b0bb978ee.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Item.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Item.h b/src/Item.h index 1ac9280fc..2f65d5344 100644 --- a/src/Item.h +++ b/src/Item.h @@ -87,8 +87,8 @@ public: m_Enchantments(a_CopyFrom.m_Enchantments), m_CustomName (a_CopyFrom.m_CustomName), m_Lore (a_CopyFrom.m_Lore), - m_RepairCost (a_CopyFrom.m_RepairCost) - m_FireworkItem(a_CopyFrom.m_FireworkItem), + m_RepairCost (a_CopyFrom.m_RepairCost), + m_FireworkItem(a_CopyFrom.m_FireworkItem) { } |