Skip to content

Commit

Permalink
Remove check for 1.20.5 in audit recipes.
Browse files Browse the repository at this point in the history
  • Loading branch information
rom1504 committed Oct 12, 2024
1 parent 7d273fd commit 2179bd5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/js/test/audit_recipes.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ require('./version_iterator')(function (p, versionString) {
if (!oakPlanks) return // Bail if version doesn't have seperately defined planks, this prevents the test failing on versions that use metadata
const recipe = recipes[craftingTable.id]
if (!recipe[0]) return
assert.notEqual(recipe.length, 1) // Check that crafting table has multiple recipes.
// remove the if after fixing https://github.com/PrismarineJS/minecraft-data/issues/917
if (versionString !== 'pc 1.20.5') {
assert.notEqual(recipe.length, 1) // Check that crafting table has multiple recipes.
}
}
})
})
Expand Down

0 comments on commit 2179bd5

Please sign in to comment.