From a33697b7b40b1bf914d95825ff78eecc17a83b6a Mon Sep 17 00:00:00 2001 From: Andrew Miner Date: Tue, 3 Sep 2013 00:10:28 -0700 Subject: [PATCH] Avoid cycle by removing Wool from String recipe * The crafting algorithm isn't quite smart enough yet to detect cycles, so adding recipes like String -> Wool and Wool -> String will cause infinite loops. So, for now, I'm removing such recipes until the algorithm is fixed. --- html/data/vanilla.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/html/data/vanilla.json b/html/data/vanilla.json index 10833c17a..f7e7683ca 100644 --- a/html/data/vanilla.json +++ b/html/data/vanilla.json @@ -550,10 +550,6 @@ "output": [[1, "Wooden Pickaxe"]], "input": [[3, "Oak Plank"], [2, "Stick"]], "tools": ["Crafting Table"] - }, { - "output": [[1, "Wool"]], - "input": [[4, "String"]], - "tools": [] }, { "output": [[1, "Wooden Sword"]], "input": [[2, "Oak Plank"], [1, "Stick"]],