diff options
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockNetherWart.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/Blocks/BlockNetherWart.h b/src/Blocks/BlockNetherWart.h index 590a55772..dde6b17d4 100644 --- a/src/Blocks/BlockNetherWart.h +++ b/src/Blocks/BlockNetherWart.h @@ -24,13 +24,11 @@ private: if (a_BlockMeta == 0x03) { // Fully grown, drop the entire produce: - auto & rand = GetRandomProvider(); - return cItem(E_ITEM_NETHER_WART, 1 + (rand.RandInt<char>(2) + rand.RandInt<char>(2)) / 2, 0); - } - else - { - return cItem(E_ITEM_NETHER_WART); + const auto DropNum = FortuneDiscreteRandom(2, 4, ToolFortuneLevel(a_Tool)); + return cItem(E_ITEM_NETHER_WART, DropNum); } + + return cItem(E_ITEM_NETHER_WART); } |