alcatrazEscapee / no-tree-punching

A Minecraft mod which adds a bit of realism to the early game.
https://minecraft.curseforge.com/projects/no-tree-punching
MIT License
31 stars 12 forks source link

how do i fix this #285

Closed Thaison2014 closed 8 months ago

Thaison2014 commented 9 months ago

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

Thaison2014 commented 8 months ago

anyone?

definitelynotklip commented 8 months ago

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.