Actually Additions Canola Seeds Not Producing Canola in Crops
SunnySlash opened this issue ยท 0 comments
I successfully managed to add Canola Seeds from Actually Additions to Agricraft through the custom plant json files (the stats change and everything), but for whatever reason when I try to harvest, the plant simply goes back to the first stage of the texture, and produces no items.
Here's the code I tried using for the json file, if anyone's interested (By the way, I didn't bother changing the textures for the crops, since I didn't plan on using that particular plant, anyway). Any and all help would be much appreciated.
{
"path": "mod_actuallyadditions/plants/canola_plant.json",
"enabled": true,
"id": "canola_crop",
"plant_name": "Canola",
"seed_name": "Canola Seeds",
"seed_items": [
{
"item": "ActuallyAdditions:itemCanolaSeed",
"meta": 0,
"tags": "",
"ignoreMeta": false,
"ignoreTags": [
"*"
],
"useOreDict": false
}
],
"description": {
"translations": {},
"default": "Canola Seeds."
},
"growth_chance": 0.9,
"bonemeal": true,
"tier": 1,
"weedable": false,
"aggressive": false,
"spread_chance": 0.1,
"spawn_chance": 0.0,
"products": {
"products": [
{
"min": 1,
"max": 5,
"chance": 0.9,
"required": true,
"item": "ActuallyAdditions:itemMisc:13",
"meta": 0,
"tags": "",
"ignoreMeta": false,
"ignoreTags": [],
"useOreDict": false
}
]
},
"requirement": {
"min_light": 10,
"max_light": 16,
"soils": [
"farmland_soil"
],
"bases": [],
"nearby": {}
},
"texture": {
"render_type": "hash",
"seed_texture": "harvestcraft:items/beanItem",
"plant_textures": [
"harvestcraft:blocks/crops/bean_stage_0",
"harvestcraft:blocks/crops/bean_stage_0",
"harvestcraft:blocks/crops/bean_stage_0",
"harvestcraft:blocks/crops/bean_stage_1",
"harvestcraft:blocks/crops/bean_stage_1",
"harvestcraft:blocks/crops/bean_stage_2",
"harvestcraft:blocks/crops/bean_stage_2",
"harvestcraft:blocks/crops/bean_stage_3"
]
}
}