mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-07-19 22:04:44 +02:00
Fix Tree Feller not working but still awarding XP.
This commit is contained in:
@ -146,7 +146,8 @@ public final class Woodcutting {
|
||||
}
|
||||
else {
|
||||
Location location = blockState.getLocation();
|
||||
ItemStack item = blockState.getData().toItemStack();
|
||||
Tree tree = (Tree) blockState.getData();
|
||||
ItemStack item = new ItemStack(Material.LOG, 1, tree.getSpecies().getData());
|
||||
|
||||
switch (((Tree) blockState.getData()).getSpecies()) {
|
||||
case GENERIC:
|
||||
|
Reference in New Issue
Block a user