aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java
diff options
context:
space:
mode:
authorMuramasa- <haydenkilloh@gmail.com>2016-08-22 22:50:58 +0100
committerGitHub <noreply@github.com>2016-08-22 22:50:58 +0100
commitccfc536501e8133794ec2a0c5f2a589201af81d6 (patch)
treec9f8c9af123f7fce7a942a2130973c51cfb3b65b /src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java
parent0476a036352600b83133caf167ac5dee4b9b5176 (diff)
parent5a94ea039ba265d966aaa7872aecb79a4851769d (diff)
downloadGT5-Unofficial-ccfc536501e8133794ec2a0c5f2a589201af81d6.tar.gz
GT5-Unofficial-ccfc536501e8133794ec2a0c5f2a589201af81d6.tar.bz2
GT5-Unofficial-ccfc536501e8133794ec2a0c5f2a589201af81d6.zip
Merge pull request #603 from Muramasa-/Mats
Material Rework
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java')
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java
index e07ea64bf4..59c795299b 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingBlock.java
@@ -56,16 +56,16 @@ public class ProcessingBlock implements gregtech.api.interfaces.IOreRecipeRegist
GT_ModHandler.addShapelessCraftingRecipe(tStack1, new Object[]{OrePrefixes.block.get(aMaterial)});
}
}
- switch (aMaterial) {
- case Mercury:
+ switch (aMaterial.mName) {
+ case "Mercury":
System.err.println("'blockQuickSilver'?, In which Ice Desert can you actually place this as a solid Block?");
break;
- case Iron:
- case WroughtIron:
+ case "Iron":
+ case "WroughtIron":
GT_Values.RA.addExtruderRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), ItemList.Shape_Extruder_Rod.get(0L, new Object[0]), ItemList.IC2_ShaftIron.get(1L, new Object[0]), 640, 120);
GT_Values.RA.addAssemblerRecipe(ItemList.IC2_Compressed_Coal_Ball.get(8L, new Object[0]), GT_Utility.copyAmount(1L, new Object[]{aStack}), ItemList.IC2_Compressed_Coal_Chunk.get(1L, new Object[0]), 400, 4);
break;
- case Steel:
+ case "Steel":
GT_Values.RA.addExtruderRecipe(GT_Utility.copyAmount(1L, new Object[]{aStack}), ItemList.Shape_Extruder_Rod.get(0L, new Object[0]), ItemList.IC2_ShaftSteel.get(1L, new Object[0]), 1280, 120);
GT_Values.RA.addAssemblerRecipe(ItemList.IC2_Compressed_Coal_Ball.get(8L, new Object[0]), GT_Utility.copyAmount(1L, new Object[]{aStack}), ItemList.IC2_Compressed_Coal_Chunk.get(1L, new Object[0]), 400, 4);
}