BlakeBr0 / MysticalCustomization

Allows modpack creators to add new content and modify existing content in Mystical Agriculture.
https://blakesmods.com/mystical-customization
MIT License
6 stars 6 forks source link

Disabling more than one augment #37

Closed TF541Productions closed 1 year ago

TF541Productions commented 1 year ago

Hello! I'm having an issue regarding editing the base mod's augments in the "configure-aguments.json" file.

I was able to use the example file in the documentation to disabled Mining AOE 1 using:

{
  "mysticalagriculture:mining_aoe_i": {
    "enabled": false
  }
}

However, I cannot figure out a way to write other augments in the .json file to disable them. I've tried adding them in the first bracket:

{
  "mysticalagriculture:mining_aoe_i": {
    "enabled": false
  }
  "mysticalagriculture:flight": {
    "enabled": false
  }
}

I've tried separate brackets...

{
  "mysticalagriculture:mining_aoe_i": {
    "enabled": false
  }
}
{
  "mysticalagriculture:flight": {
    "enabled": false
  }
}

But sadly to no avail, in fact it reenables Mining AOE if I try adding anything additional. So, any help with this would be greatly appreciated!

BlakeBr0 commented 1 year ago

https://jsonlint.com/