Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configuration Json not working #149

Open
ecoay opened this issue Mar 14, 2017 · 1 comment
Open

Configuration Json not working #149

ecoay opened this issue Mar 14, 2017 · 1 comment

Comments

@ecoay
Copy link

ecoay commented Mar 14, 2017

I used the example.json under sieve and created actuallyadditions.json

{
"recipes": [
{
"id": "minecraft:dirt",
"meta": 0,
"behavior": "meta_ignored",
"rewards": [
{
"id": "integrateddynamics:menrilSapling",
"meta": 0,
"amount": 1,
"baseChance": 8
}
{
"id": "actuallyadditions:itemRiceSeed",
"meta": 0,
"amount": 1,
"baseChance": 12
}
{
"id": "actuallyadditions:itemCoffeeSeed",
"meta": 0,
"amount": 1,
"baseChance": 12
}
{
"id": "actuallyadditions:itemFlaxSeed",
"meta": 0,
"amount": 1,
"baseChance": 12
}
{
"id": "actuallyadditions:itemCanolaSeed",
"meta": 0,
"amount": 1,
"baseChance": 12
}
]
},
{
"id": "minecraft:leaves",
"meta": 0,
"behavior": "meta_specific",
"rewards": [
{
"id": "minecraft:sapling",
"meta": 0,
"amount": 1,
"baseChance": 50
}
]
}
]
}

This doesn't result in the items being added. I sifted 550 dirt got all other default dirt drops but never the ones I added and the ones I added are not added to waila under dirt.

@Jozufozu
Copy link
Owner

You need commas between the rewards, for example
"rewards": [
{
"id": "integrateddynamics:menrilSapling",
"meta": 0,
"amount": 1,
"baseChance": 8
},
{
"id": "actuallyadditions:itemRiceSeed",
"meta": 0,
"amount": 1,
"baseChance": 12
},...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants