Random Things Fertilized Dirt
Joly0 opened this issue ยท 1 comments
Hello, i have the following Problem: I dont know what exactly i am doing wrong, but i cant get fertilized dirt from random things to work with agricraft. I tried to make a new .json in the vanilla/soils folder with this
{
"path": "vanilla/soils/Fertilized_dirt.json",
"enabled": true,
"id": "fertilizeddirt_soul",
"name": "Fertilized Dirt",
"varients": [
{
"item": "randomthings:fertilizedDirt",
"meta": 0,
"tags": "",
"ignoreMeta": true,
"ignoreTags": [
"*"
],
"useOreDict": true
}
]
}
in it, but it dont seem to be right, tried a few other variations, but none worked. In earlier versions, in my opinion, it was easier to add custom soils. Can someone help me?
Forget it, after testing and testing, i found the right things to do.
{
"path": "vanilla/soils/fertilizedDirt_soil.json",
"enabled": true,
"id": "fertilizedDirt_soil",
"name": "fertilized Dirt",
"varients": [
{
"item": "randomthings:fertilizedDirt",
"meta": 0,
"tags": "",
"ignoreMeta": true,
"ignoreTags": [
"*"
],
"useOreDict": true
}
]
}
is working for me. At the current point, that only works with normal fertilized dirt, not with the tilled one, but thats not difficult to add. I leave this here for others with the same problem.