From 2179bd5f7986636e8125c8ab7ca03b48e3b1e50a Mon Sep 17 00:00:00 2001 From: Romain Beaumont Date: Sat, 12 Oct 2024 17:22:35 +0200 Subject: [PATCH] Remove check for 1.20.5 in audit recipes. --- tools/js/test/audit_recipes.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/js/test/audit_recipes.js b/tools/js/test/audit_recipes.js index cb3ee11de..c950dce95 100644 --- a/tools/js/test/audit_recipes.js +++ b/tools/js/test/audit_recipes.js @@ -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. + } } }) })