summaryrefslogtreecommitdiffstats
path: root/src/Item.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-09-02 21:38:37 +0200
committerMattes D <github@xoft.cz>2014-09-02 21:38:37 +0200
commit82f203714677a7ae45804393853c3591c628e864 (patch)
treeea87cb927f0448e2960dff6d1763777942500213 /src/Item.h
parentRe-added alternate spellings of darkgraywool. (diff)
parentChanged the IsEnchantable() comment again. (diff)
downloadcuberite-82f203714677a7ae45804393853c3591c628e864.tar
cuberite-82f203714677a7ae45804393853c3591c628e864.tar.gz
cuberite-82f203714677a7ae45804393853c3591c628e864.tar.bz2
cuberite-82f203714677a7ae45804393853c3591c628e864.tar.lz
cuberite-82f203714677a7ae45804393853c3591c628e864.tar.xz
cuberite-82f203714677a7ae45804393853c3591c628e864.tar.zst
cuberite-82f203714677a7ae45804393853c3591c628e864.zip
Diffstat (limited to 'src/Item.h')
-rw-r--r--src/Item.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Item.h b/src/Item.h
index d8b9e78a0..056b5eb8a 100644
--- a/src/Item.h
+++ b/src/Item.h
@@ -183,8 +183,10 @@ public:
/** Loads the item data from JSON representation */
void FromJson(const Json::Value & a_Value);
- /** Returns true if the specified item type is enchantable (as per 1.2.5 protocol requirements) */
- static bool IsEnchantable(short a_ItemType); // tolua_export
+ /** Returns true if the specified item type is enchantable.
+ If WithBook is true, the function is used in the anvil inventory with book enchantments.
+ So it checks the "only book enchantments" too. Example: You can only enchant a hoe with a book. */
+ static bool IsEnchantable(short a_ItemType, bool a_WithBook = false); // tolua_export
/** Returns the enchantability of the item. When the item hasn't a enchantability, it will returns 0 */
int GetEnchantability(); // tolua_export