
Red grape seeds not dropping
ArtOfCombat opened this issue ยท 6 comments
I have broken dozens if not hundreds of vines and have yet to find a single red grape seed. Am I missing a piece of information?
I'd use 4.1.1.200, as that was the latest 1.12.2 version released on Github, and should be on CurseForge, and if not hopefully it gets there.
Did some testing .... There is a 1 in 10 chance to drop a variation of grape seed. Important thing to note is that you cannot be using shears.
That's good information .... found the bug.
int randomGrapeSeed = random.nextInt(GrapeTypes.values().length - 1); GrapeTypes grapeTypes = GrapeTypes.values()[randomGrapeSeed];
There are three grape types, so the nextInt actually results in a random number from 0 inclusive to 2 exclusive. So GrapeTypes.values()[2] actually will never happen and that is the Red Grapes.