aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-02-05 19:30:50 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-02-05 19:30:50 +1000
commita4811c6d3e2d421310ac01a71b71e64b682cd5b0 (patch)
tree4cfd3457adecf197de5d7b0796b4967ffca12d20 /src/Java/gtPlusPlus/core/recipe
parent4cecde3114959bef13971009dc44e5c90594068e (diff)
downloadGT5-Unofficial-a4811c6d3e2d421310ac01a71b71e64b682cd5b0.tar.gz
GT5-Unofficial-a4811c6d3e2d421310ac01a71b71e64b682cd5b0.tar.bz2
GT5-Unofficial-a4811c6d3e2d421310ac01a71b71e64b682cd5b0.zip
+ Re-added Iron Rod -> Iron Bars recipe which was removed from GT long ago.
$ Work on Pocket Fusion reactor.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_General.java16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java
index 35b05ee48d..714dc70cad 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java
@@ -32,7 +32,7 @@ public class RECIPES_General {
static String RECIPE_LapisDust = "dustLazurite";
static ItemStack OUTPUT_Blueprint = ItemUtils.getSimpleStack(ModItems.itemBlueprintBase);
static ItemStack RECIPE_CraftingTable = ItemUtils.getSimpleStack(Item.getItemFromBlock(Blocks.crafting_table));
- static String RECIPE_BronzePlate = "plateAnyBronze";
+ static String RECIPE_BronzePlate = "plateBronze";
static ItemStack RECIPE_BasicCasingIC2;
static ItemStack OUTPUT_Workbench_Bronze = ItemUtils.getSimpleStack(Item.getItemFromBlock(ModBlocks.blockWorkbench));
static ItemStack RECIPE_HydrogenDust = ItemUtils.getSimpleStack(ModItems.itemHydrogenBlob);
@@ -120,6 +120,20 @@ public class RECIPES_General {
ItemUtils.getSimpleStack(ModBlocks.blockFishTrap))){
Logger.INFO("Added a recipe for the Fish Trap.");
}
+
+
+ String[] ironTypes = {"", "Wrought", "Pig", "Any"};
+ for (int y=0;y<ironTypes.length;y++) {
+ //Iron bars
+ String ironRecipe = "stick"+ironTypes[y]+"Iron";
+ if (RecipeUtils.recipeBuilder(
+ null, CI.craftingToolWrench, null,
+ ironRecipe, ironRecipe, ironRecipe,
+ ironRecipe, ironRecipe, ironRecipe,
+ ItemUtils.getItemStack("minecraft:iron_bars", 8))) {
+ Logger.INFO("Re-added old GT recipe for Iron Bars.");
+ }
+ }
//Mining Explosive
if (RecipeUtils.recipeBuilder(