diff options
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockGlowstone.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Blocks/BlockGlowstone.h b/src/Blocks/BlockGlowstone.h index d43581a4d..930509e0a 100644 --- a/src/Blocks/BlockGlowstone.h +++ b/src/Blocks/BlockGlowstone.h @@ -6,7 +6,6 @@ - class cBlockGlowstoneHandler : public cBlockHandler { @@ -25,8 +24,10 @@ private: } else { - // TODO: Handle the Fortune enchantment here - return cItem(E_ITEM_GLOWSTONE_DUST, GetRandomProvider().RandInt<char>(2, 4), 0); + unsigned int DropNum = GetRandomProvider().RandInt<char>(2, 4 + ToolFortuneLevel(a_Tool)); + // cap the dropnum to the max amount of 4 + DropNum = std::min<unsigned int>(DropNum, 4); + return cItem(E_ITEM_GLOWSTONE_DUST, DropNum, 0); } } |