Ender Crop

Ender Crop

11M Downloads

Cannot add Ender Crop to Botany Pots

Aexoyir opened this issue ยท 1 comments

commented

I have added Ender Crops to Botany Pots via CraftTweaker. Everything shows up in JEI as working but when I click on a botany pot it won't process. Are Ender Seeds hard coded to only work on Tilled End Stone? Is that adjustable?

For reference;

import mods.botanypots.ZenCrop;
val crops = <recipetype:botanypots:crop>;
import mods.botanypots.ZenSoil;
val soils = <recipetype:botanypots:soil>;

val ender_soils = soils.create("botanypots:ender_soils", <item:minecraft:end_stone>, <blockstate:minecraft:end_stone>, 0.0, "ender_soils");
val ender_seeds = crops.create("botanypots:ender_seeds", <item:endercrop:ender_seeds>, <blockstate:endercrop:ender_crop>, 3000, "ender_soils");

ender_seeds.addCategory("ender_soils");
ender_seeds.addDrop(<item:minecraft:ender_pearl>, 0.75, 2);
ender_seeds.addDrop(<item:endercrop:ender_seeds>, 0.1);

image

commented