diff options
author | ScriptedPiky <41557212+ScriptedPiky@users.noreply.github.com> | 2022-03-25 08:21:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-25 16:21:59 +0100 |
commit | a5d147d49c1a2455776f0cc5abe914a6e1ed37a0 (patch) | |
tree | 1d6d267704b83ec15c0aa71f1e212977dc2bcfa3 /src/main/java | |
parent | a4958597ebe4b961b023697249b0d7076befe9c3 (diff) | |
download | GT5-Unofficial-a5d147d49c1a2455776f0cc5abe914a6e1ed37a0.tar.gz GT5-Unofficial-a5d147d49c1a2455776f0cc5abe914a6e1ed37a0.tar.bz2 GT5-Unofficial-a5d147d49c1a2455776f0cc5abe914a6e1ed37a0.zip |
Fixed GtFrame<alloy> missing a single '-' for broken recipes (#159)
There's probably a lot of other places where these recipes are broken and needs to be checked
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java index ecd253526f..ea16e19f57 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/main/java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -1453,7 +1453,7 @@ public class RECIPES_Machines { //Coke Oven Frame Casing RecipeUtils.addShapedGregtechRecipe( CI.component_Plate[7], CI.component_Rod[7], CI.component_Plate[7], - CI.component_Rod[7], "frameGtTantalloy61", CI.component_Rod[7], + CI.component_Rod[7], "frameGtTantalloy-61", CI.component_Rod[7], CI.component_Plate[7], CI.component_Rod[7], CI.component_Plate[7], RECIPE_IndustrialCokeOvenFrame); //Coke Oven Coil 1 @@ -1516,7 +1516,7 @@ public class RECIPES_Machines { //Maceration Frame Casing RecipeUtils.addShapedGregtechRecipe( "platePalladium", "platePalladium", "platePalladium", - "stickPlatinum", "frameGtInconel625", "stickPlatinum", + "stickPlatinum", "frameGtInconel-625", "stickPlatinum", "platePalladium", "stickLongPalladium", "platePalladium", RECIPE_IndustrialMacerationStackFrame); //Industrial Maceration stack @@ -1772,7 +1772,7 @@ public class RECIPES_Machines { //Matter Fabricator Frame Casing RecipeUtils.addShapedGregtechRecipe( "plateNiobiumCarbide", CI.component_Rod[8], "plateNiobiumCarbide", - CI.component_Rod[8], "frameGtInconel690", CI.component_Rod[8], + CI.component_Rod[8], "frameGtInconel-690", CI.component_Rod[8], "plateNiobiumCarbide", CI.component_Rod[8], "plateNiobiumCarbide", RECIPE_IndustrialMatterFabFrame); //Matter Fabricator Coil @@ -2144,14 +2144,14 @@ public class RECIPES_Machines { //Hastelloy-N Sealant Casing RecipeUtils.addShapedGregtechRecipe( "plateIncoloyMA956", "plateHastelloyN", "plateIncoloyMA956", - "plateHastelloyN", "frameGtHastelloyC276", "plateHastelloyN", + "plateHastelloyN", "frameGtHastelloy-C276", "plateHastelloyN", "plateIncoloyMA956", "plateHastelloyN", "plateIncoloyMA956", GregtechItemList.Casing_Refinery_External.get(Casing_Amount)); //Hastelloy-X Structural Casing RecipeUtils.addShapedGregtechRecipe( "ringInconel792", "gearGtHastelloyX", CI.component_Plate[5], - CI.craftingToolHammer_Hard, "frameGtHastelloyC276", CI.craftingToolWrench, + CI.craftingToolHammer_Hard, "frameGtHastelloy-C276", CI.craftingToolWrench, CI.component_Plate[5], CI.getTieredMachineCasing(4), "ringInconel792", GregtechItemList.Casing_Refinery_Structural.get(Casing_Amount)); @@ -2267,7 +2267,7 @@ public class RECIPES_Machines { if (CORE.ConfigSwitches.enableMultiblock_PowerSubstation){ RecipeUtils.addShapedRecipe( "screwTitanium", "plateIncoloy020", "screwTitanium", - "plateIncoloy020", "frameGtIncoloyMA956", "plateIncoloy020", + "plateIncoloy020", "frameGtIncoloy-MA956", "plateIncoloy020", "screwTitanium", "plateIncoloy020", "screwTitanium", GregtechItemList.Casing_Power_SubStation.get(Casing_Amount)); |