Minecraft handles block drop chances internally.

Fixes #1678
This commit is contained in:
Glitchfinder 2013-12-08 12:49:43 -08:00
parent c88583c1c0
commit 06c9ea7068

View File

@ -153,7 +153,7 @@ public class WoodcuttingManager extends SkillManager {
break;
case LEAVES:
Misc.randomDropItems(blockState.getLocation(), block.getDrops(), 10.0);
Misc.dropItems(blockState.getLocation(), block.getDrops());
break;
default: