diff --git a/html/crafting.js b/html/crafting.js index 8f052b683..e625c7dde 100644 --- a/html/crafting.js +++ b/html/crafting.js @@ -123,8 +123,14 @@ function updateCraftingSelector() { var $optgroup = $(""); $selector.append($optgroup); + var names = []; for (var name in recipebook.recipes) { - $optgroup.append("" + name + ""); + names.push(name); + } + names.sort(); + + for (var i = 0; i < names.length; i++) { + $optgroup.append("" + names[i] + ""); } }); $selector.removeAttr("disabled"); diff --git a/html/data/industrial_craft.json b/html/data/industrial_craft.json index 7bc3fd5a2..efcb5540d 100644 --- a/html/data/industrial_craft.json +++ b/html/data/industrial_craft.json @@ -330,6 +330,22 @@ "output": [[1, "Wrench (industrial craft)"]], "input": [[6, "Bronze Ingot"]], "tools": ["Crafting Table"] + }, { + "output": [[1, "Detector Cable"]], + "input": [[3, "Redstone"], [1, "Electronic Circuit"], [1, "HV 3x Insulated Cable"]], + "tools": ["Crafting Table"] + }, { + "output": [[1, "HV 3x Insulated Cable"]], + "input": [[1, "HV 2x Insulated Cable"], [1, "Rubber"]], + "tools": [] + }, { + "output": [[1, "HV 2x Insulated Cable"]], + "input": [[1, "HV Insulated Cable"], [1, "Rubber"]], + "tools": [] + }, { + "output": [[12, "HV Cable"]], + "input": [[3, "Refined Iron"]], + "tools": ["Crafting Table"] } ] }