The Bumblezone (NeoForge/Forge)

The Bumblezone (NeoForge/Forge)

23M Downloads

Error in datapack file prevents loading tier 4 trades

dr3ams opened this issue ยท 0 comments

commented

the_bumblezone-7.9.0+1.20.1-forge.jar\data\the_bumblezone\bz_bee_queen_trades\tier_4_trades.json

Contains three wrong lines at the end of the file:

    {
      "item": {
        "id": "plushies:bee_plushie",
        "count": 1
      },
      "xp_reward": 8,
      "weight": 1,
      "required": false
    },
    {
      "item": {
        "id": "skinnedlanterns:bee_lantern_block",
        "count": 1
      },
      "xp_reward": 8,
      "weight": 1,
      "required": false
    },
    {
      "item": {
        "id": "skinnedlanterns:bee_soul_lantern_block",
        "count": 1
      },
      "xp_reward": 8,
      "weight": 1,
      "required": false
    }

Should be:

    {
      "id": "plushies:bee_plushie",
      "count": 1,
      "xp_reward": 8,
      "weight": 1,
      "required": false
    },
    {
      "id": "skinnedlanterns:bee_lantern_block",
      "count": 1,
      "xp_reward": 8,
      "weight": 1,
      "required": false
    },
    {
      "id": "skinnedlanterns:bee_soul_lantern_block",
       "count": 1,
      "xp_reward": 8,
      "weight": 1,
      "required": false
    }

Because of that tier 4 trades doesn't load at all