VazkiiMods / Psi

Spellcrafting mod for Minecraft based around Vector math and stack-based processing
http://psi.vazkii.net
314 stars 89 forks source link

fix: All main advancements unlocking instantly for 1.19.2 #792

Closed pandier closed 1 year ago

pandier commented 1 year ago

Minecraft version: 1.19.2

Because of an invalid advancement format, all main advancements were unlocked on inventory change.

Diff

"conditions": {
  "items": [
    {
-     "item": "minecraft:example_item"
+     "items": ["minecraft:example_item"]
    }
  ]
}

Explanation

In recent versions, the format has changed. The field has been renamed from item to items and now accepts list of item ids instead of a single item id.