diff options
| author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-10 17:00:42 +1000 |
|---|---|---|
| committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-10 17:00:42 +1000 |
| commit | 8931cf08cc1710c018bc332974306d623dfac03f (patch) | |
| tree | 6fb59caf22fd46f8074919ea6158a6fca857aed1 /src/Java/gtPlusPlus/xmod | |
| parent | a5ab04af307c9ff03a47461afeadc5256d97fd89 (diff) | |
| download | GT5-Unofficial-8931cf08cc1710c018bc332974306d623dfac03f.tar.gz GT5-Unofficial-8931cf08cc1710c018bc332974306d623dfac03f.tar.bz2 GT5-Unofficial-8931cf08cc1710c018bc332974306d623dfac03f.zip | |
+ Added the first proper chemical dehydrator recipes, for Lithium carbonate.
+ Added methods to UtilsItems to check if something is radioactive and how radioactive it is 0-3.
- Removed all old dehydrator recipes used in testing.
- Removed some old hard-coded items now generated by the material handler. (No items will be lost, as I doubt anyone ever obtained them.)
$ Fixed some broken textures after refactoring the entire project a few commits ago.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java | 4 | ||||
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java index fbba69bf93..7693407936 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java @@ -109,13 +109,13 @@ public class GregtechFluidHandler { UtilsItems.getItemStackOfAmountFromOreDict("dustSmallSulfur", 1), 20*20); - GT_Values.RA.addChemicalRecipe( + /*GT_Values.RA.addChemicalRecipe( UtilsItems.getItemStackOfAmountFromOreDict("dustLithium", 8), null, FluidUtils.getFluidStack("sulfuricacid", 133*32), FluidUtils.getFluidStack("sulfuriclithium", 133*4), UtilsItems.getItemStackOfAmountFromOreDict("dustSmallLithium", 2), - 20*20); + 20*20);*/ GT_Values.RA.addChemicalRecipe( UtilsItems.getItemStackOfAmountFromOreDict("cellOxygen", 1), diff --git a/src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java b/src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java index 86037d3a0c..880bad71cc 100644 --- a/src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java +++ b/src/Java/gtPlusPlus/xmod/thermalfoundation/item/TF_Items.java @@ -32,8 +32,8 @@ public class TF_Items { public static void preInit(){ - itemBucket = (ItemBucket)new ItemBucket("GTplusplus").setUnlocalizedName("bucket").setCreativeTab(AddToCreativeTab.tabMisc); - itemMaterial = (ItemBase)new ItemBase("GTplusplus").setUnlocalizedName("material").setCreativeTab(AddToCreativeTab.tabMisc); + itemBucket = (ItemBucket)new ItemBucket("MiscUtils").setUnlocalizedName("bucket").setCreativeTab(AddToCreativeTab.tabMisc); + itemMaterial = (ItemBase)new ItemBase("MiscUtils").setUnlocalizedName("material").setCreativeTab(AddToCreativeTab.tabMisc); bucketPyrotheum = itemBucket.addOreDictItem(1, "bucketPyrotheum"); |
