Malum

Malum

2M Downloads

Stoneborn spirit data json is missing a comma

Not-February opened this issue ยท 1 comments

commented

Malum 1.18.1-1.2

The data for this particular entity on Github as well as release 1.2 on Curseforge:

  "registry_name": "undergarden:stoneborn",
  "primary_type": "earthen",
  "spirits": [
    {
      "spirit": "arcane",
      "count": 2
    }
    {
      "spirit": "earthen",
      "count": 3
    }
  ]
}

This seems to be preventing world loading in my setup because of datapack errors even though I don't have Undergarden installed, it should probably be:

  "registry_name": "undergarden:stoneborn",
  "primary_type": "earthen",
  "spirits": [
    {
      "spirit": "arcane",
      "count": 2
    },
    {
      "spirit": "earthen",
      "count": 3
    }
  ]
}
commented

Strange stuff! I was able to load into a world just fine.