diff options
| author | Draknyte1 <Draknyte1@hotmail.com> | 2016-10-20 02:52:06 +1000 |
|---|---|---|
| committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-10-20 02:52:06 +1000 |
| commit | a9d22d7d85ba567cacc83e22cecae06ceb1e4936 (patch) | |
| tree | 56c813c851710f32c124833d9e85fc1ddb9de83a /src/Java/gtPlusPlus/core/recipe | |
| parent | d53b08982a6d2be3cc0be4552520bfc500576f6f (diff) | |
| download | GT5-Unofficial-a9d22d7d85ba567cacc83e22cecae06ceb1e4936.tar.gz GT5-Unofficial-a9d22d7d85ba567cacc83e22cecae06ceb1e4936.tar.bz2 GT5-Unofficial-a9d22d7d85ba567cacc83e22cecae06ceb1e4936.zip | |
$ Fixed Workbench recipe not using correct machine casing.
$ Fixed the Extruder and the Alloy smelter eating the shaping molds.
$ Fixed .09 recipes for cells.
% Changed the recipes for the Geothermal Engines and Rocket Engines.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_General.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java index 9a396334d4..1d17bee204 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_General.java @@ -1,6 +1,5 @@ package gtPlusPlus.core.recipe; -import gregtech.api.enums.ItemList; import gtPlusPlus.core.block.ModBlocks; import gtPlusPlus.core.item.ModItems; import gtPlusPlus.core.lib.LoadedMods; @@ -25,7 +24,7 @@ public class RECIPES_General { public static void RECIPES_LOAD(){ if (LoadedMods.Gregtech){ - RECIPE_BasicCasingIC2 = ItemList.Casing_Gearbox_Bronze.get(1); + RECIPE_BasicCasingIC2 = UtilsItems.getItemStack("IC2:blockMachine", 1); run(); } } |
