Started by
Ball-van
on
Topic category: Help with Minecraft modding (Java Edition)
Hello everyone! I would like to know how you can make it so that different types of trees can grow from a sapling. For some reason, I have the same tree every time. Please explain how to explain or what is wrong with me.
Edited by Ball-van on Mon, 05/10/2021 - 13:51
I think it is because the game is detecting that the chance is 0.7 or lower every time, you cant have numbers below 0.7 because
(≥ 0.7) is the same as (≥ 0.5) if the number that randomly generates is lower than 0.5
hopefully that made sense.
you could try doing something like
IF: Random (0, 1) is [(≤ 1) AND (≥0.8)]