Mods:
Botany Pots v.13.0.39
KubeJs v. forge-2001.6.5-build.14
KubeJs Botany Pots v.1.2.2
Let's Do Vinery v. forge-1.4.28
Let's Do API v. 1.2.15-forge
The recipe is "created" without error but doesn't show up in jei nor does it work.
ServerEvents.recipes(event => {
event.recipes.botanypots.crop(
'vinery:red_grape_seeds', // seed item
['minecraft:dirt'], // categories that this crop can be planted on
{block:"vinery:red_grape_bush"}, // display block
[
Item.of('vinery:red_grape') // item
.withChance(100) // weight of this entry compared to the others
.withRolls(1, 3) // the times this loot will be chosen (min, max)
// for example, when chosen this will give 1 to 2 candles
],
10, // growthTicks
1 // optional, growthModifier - this can be set to 1 in most cases
)
})
Mods: Botany Pots v.13.0.39 KubeJs v. forge-2001.6.5-build.14 KubeJs Botany Pots v.1.2.2 Let's Do Vinery v. forge-1.4.28 Let's Do API v. 1.2.15-forge
The recipe is "created" without error but doesn't show up in jei nor does it work.