From 5f11fc7ddb6772e9f932ebf22c891f5d758ff159 Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Sun, 5 Feb 2017 23:31:38 +0000 Subject: [PATCH] Adjust TTower recipe --- src/main/java/mods/eln/Eln.java | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/main/java/mods/eln/Eln.java b/src/main/java/mods/eln/Eln.java index 26061c3c5..2d051aa91 100644 --- a/src/main/java/mods/eln/Eln.java +++ b/src/main/java/mods/eln/Eln.java @@ -5811,16 +5811,19 @@ void recipeGridDevices(HashSet oreNames) { // I don't care what you think, if your modpack lacks steel then you don't *need* this much power. // Feel free to add alternate non-iron recipes, though. Here, or by minetweaker. - for (String blockType : new String[]{ - "blockAluminum", - "blockAluminium", - "blockSteel" + for (String type : new String[]{ + "Aluminum", + "Aluminium", + "Steel" }) { + String blockType = "block" + type; + String ingotType = "ingot" + type; if (oreNames.contains(blockType)) { addRecipe(findItemStack("Transmission Tower"), - "BBB", - "mBm", + "ii ", + "mi ", " B ", + Character.valueOf('i'), ingotType, Character.valueOf('B'), blockType, Character.valueOf('m'), findItemStack("Machine Block")); }