mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-07-21 06:44:44 +02:00
Actually don't reduce sapling drop if KnockOnWood unlocked. (Prior fix didn't)
Signed-off-by: Momshroom <Momshroom@gmail.com>
This commit is contained in:
@ -128,6 +128,20 @@ public final class Misc {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Drops the item from the item stack only if it is a sapling (or equivalent)
|
||||
* Needed for TreeFeller
|
||||
*/
|
||||
public static void spawnItemIfSapling(@NotNull Player player, @NotNull Location location, @NotNull Collection < ItemStack > drops, @NotNull ItemSpawnReason itemSpawnReason) {
|
||||
String dropString;
|
||||
for (ItemStack drop : drops) {
|
||||
dropString = drop.getType().getKey().getKey();
|
||||
if (dropString.contains("sapling") || dropString.contains("propagule")) {
|
||||
Misc.spawnItem(player, location, drop, itemSpawnReason);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Drop items at a given location.
|
||||
*
|
||||
|
Reference in New Issue
Block a user