No Tree Punching

No Tree Punching

14M Downloads

how do i fix this

Thaison2014 opened this issue ยท 2 comments

commented

for some reason when i break leaves i get sapling instead of sticks

commented

anyone?

commented

for some reason when i break leaves i get sapling instead of sticks

Getting sticks from leaves is actually pretty rare. You'll get one if you keep trying (don't use shears) but I'd actually recommend installing either the mod This Rocks! for Fabric or Project: Vibrant Journeys for Forge that place random bits and bobs on the ground, such as rocks, twigs, and shells, and collecting sticks from the ground that way.

Alternatively, you could make a custom recipe to convert saplings into sticks using CraftTweaker. You'd have to create a new file with a .zs extension named whatever you want. It would be placed inside the new scripts folder created in the root directory of the game after it is ran with the mod at least once. Then you'd paste the following syntax into it:

craftingTable.addShapeless("sapling_to_sticks", <item:minecraft:stick> * 2, [<tag:items:minecraft:saplings>]);

This would allow you to convert any sapling into two sticks using any type of crafting grid. You can change the amount of sticks you'd get from the recipe by modifying the * 2 part.