Skip to content

Commit

Permalink
Adjust TTower recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
Baughn committed Feb 17, 2017
1 parent 8e8dcf4 commit 5f11fc7
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/main/java/mods/eln/Eln.java
Original file line number Diff line number Diff line change
Expand Up @@ -5811,16 +5811,19 @@ void recipeGridDevices(HashSet<String> 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"));
}
Expand Down

0 comments on commit 5f11fc7

Please sign in to comment.