diff options
author | KingCol13 <48412633+KingCol13@users.noreply.github.com> | 2020-10-01 23:33:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 23:33:32 +0200 |
commit | 8947147c25e2640519897bfdc8807e97ee291d70 (patch) | |
tree | 63eca1e5bd8ad29ac9beba5a780d466c9bb13849 /src/Item.h | |
parent | Add SetBlockMeta warning in documentation (#4943) (diff) | |
download | cuberite-8947147c25e2640519897bfdc8807e97ee291d70.tar cuberite-8947147c25e2640519897bfdc8807e97ee291d70.tar.gz cuberite-8947147c25e2640519897bfdc8807e97ee291d70.tar.bz2 cuberite-8947147c25e2640519897bfdc8807e97ee291d70.tar.lz cuberite-8947147c25e2640519897bfdc8807e97ee291d70.tar.xz cuberite-8947147c25e2640519897bfdc8807e97ee291d70.tar.zst cuberite-8947147c25e2640519897bfdc8807e97ee291d70.zip |
Diffstat (limited to 'src/Item.h')
-rw-r--r-- | src/Item.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Item.h b/src/Item.h index d3f853170..600c8b2f1 100644 --- a/src/Item.h +++ b/src/Item.h @@ -141,8 +141,9 @@ public: int GetEnchantability(); // tolua_export /** Randomly enchants the item using the specified number of XP levels. - Returns true if the item was enchanted, false if not (not enchantable / too many enchantments already). */ - bool EnchantByXPLevels(int a_NumXPLevels); // tolua_export + Returns true if the item was enchanted, false if not (not enchantable / too many enchantments already). + Randomness is derived from the provided PRNG. */ + bool EnchantByXPLevels(int a_NumXPLevels, MTRand & a_Random); // Exported in ManualBindings.cpp /** Adds this specific enchantment to this item, returning the cost. FromBook specifies whether the enchantment should be treated as coming |