diff options
| author | draknyte1 <draknyte1@hotmail.com> | 2017-02-28 21:43:53 +1000 |
|---|---|---|
| committer | draknyte1 <draknyte1@hotmail.com> | 2017-02-28 21:43:53 +1000 |
| commit | 70eaed84ca2fe532f0417d11923096abe0ccbb69 (patch) | |
| tree | 26eb1d5bf01bea9b0398f11676037da425c3e9c0 /src/Java/gtPlusPlus/core/recipe | |
| parent | ed6f2e50902a72e55b452e0e3fb9cd72b427d157 (diff) | |
| download | GT5-Unofficial-70eaed84ca2fe532f0417d11923096abe0ccbb69.tar.gz GT5-Unofficial-70eaed84ca2fe532f0417d11923096abe0ccbb69.tar.bz2 GT5-Unofficial-70eaed84ca2fe532f0417d11923096abe0ccbb69.zip | |
^ Version Bump.
$ Fixed GT:NH compatibility not working.
% Tweaked Fluorite drop function.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index c788ad2ee8..296b3d4199 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -1,7 +1,5 @@ package gtPlusPlus.core.recipe; -import static gtPlusPlus.core.lib.CORE.GTNH; - import gregtech.api.enums.*; import gtPlusPlus.core.lib.CORE; import gtPlusPlus.core.lib.LoadedMods; @@ -630,7 +628,8 @@ public class RECIPES_Machines { //Tiered Tanks - if (!GTNH){ + Utils.LOG_INFO("Is New Horizons Loaded? "+CORE.GTNH); + if (!CORE.GTNH){ RecipeUtils.addShapedGregtechRecipe( plateTier1, plateTier1, plateTier1, plateTier1, pipeTier1, plateTier1, @@ -697,6 +696,13 @@ public class RECIPES_Machines { plateTier6 = "plateAluminium"; pipeTier6 = "pipeMediumSteel"; + Utils.LOG_INFO("Loading New Horizon Tanks, with custom recipes."); + Utils.LOG_INFO("Using "+plateTier1+" with "+pipeTier1); + Utils.LOG_INFO("Using "+plateTier2+" with "+pipeTier2); + Utils.LOG_INFO("Using "+plateTier3+" with "+pipeTier3); + Utils.LOG_INFO("Using "+plateTier4+" with "+pipeTier4); + Utils.LOG_INFO("Using "+plateTier5+" with "+pipeTier5); + Utils.LOG_INFO("Using "+plateTier6+" with "+pipeTier6); RecipeUtils.addShapedGregtechRecipe( plateTier1, plateTier1, plateTier1, |
