aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/thermalfoundation/item
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-04-16 20:56:02 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-04-16 20:56:02 +1000
commit8c03170c38ef203c1264453ab04e9a9e80248708 (patch)
tree0d68685d9eb23a587385bd733e0df5ccff754d79 /src/Java/gtPlusPlus/xmod/thermalfoundation/item
parentb9e2df8a29b3903b07c7a2ba187acc5f3f960ce8 (diff)
downloadGT5-Unofficial-8c03170c38ef203c1264453ab04e9a9e80248708.tar.gz
GT5-Unofficial-8c03170c38ef203c1264453ab04e9a9e80248708.tar.bz2
GT5-Unofficial-8c03170c38ef203c1264453ab04e9a9e80248708.zip
$ Fixed Advanced Cryogenic Freezer casing textures for hatches & busses.
- Removed shapeless recipes for Pyrotheum and Cryotheum dust in GTNH. + Added Mixer recipes for Pyrotheum and Cryotheum dusts.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/thermalfoundation/item')
-rw-r--r--src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java b/src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java
index 8e632b8e6b..603789bd23 100644
--- a/src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java
+++ b/src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java
@@ -3,12 +3,15 @@ package gtPlusPlus.xmod.thermalfoundation.item;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
+import gregtech.api.enums.GT_Values;
+
import cofh.core.item.ItemBase;
import cofh.core.item.ItemBucket;
import cofh.core.util.energy.FurnaceFuelHandler;
import cofh.core.util.fluid.BucketHandler;
import cofh.lib.util.helpers.ItemHelper;
import gtPlusPlus.core.creative.AddToCreativeTab;
+import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.core.util.minecraft.ItemUtils;
import gtPlusPlus.core.util.reflect.ReflectionUtils;
import gtPlusPlus.xmod.thermalfoundation.block.TF_Blocks;
@@ -74,14 +77,11 @@ public class TF_Items {
}
public static void postInit(){
-
+ if (!CORE.GTNH) {
ItemHelper.addRecipe(ItemHelper.ShapelessRecipe(ItemHelper.cloneStack(dustPyrotheum, 1), new Object[] { "dustCoal", "dustSulfur", "dustRedstone", "dustBlaze" }));
ItemHelper.addRecipe(ItemHelper.ShapelessRecipe(ItemHelper.cloneStack(dustCryotheum, 1), new Object[] { Items.snowball, "dustSaltpeter", "dustRedstone", "dustBlizz" }));
ItemHelper.addRecipe(ItemHelper.ShapelessRecipe(ItemHelper.cloneStack(dustCryotheum, 1), new Object[] { Items.snowball, "dustNitor", "dustRedstone", "dustBlizz" }));
- //ItemHelper.addRecipe(ItemHelper.ShapelessRecipe(ItemHelper.cloneStack(dustBlizz, 2), new Object[] { "rodBlizz" }));
-
-
-
+ }
}
}