diff options
author | Kortako <spinner2727@gmail.com> | 2018-02-04 13:51:11 -0800 |
---|---|---|
committer | Kortako <spinner2727@gmail.com> | 2018-02-04 13:51:11 -0800 |
commit | e90db806d7f40c4d304a96054a32f5d5afe9a242 (patch) | |
tree | b38d5a6201be55f56968eb6a9d9b1b506b9c51cd /src/main/java/gregtech/common | |
parent | 945cd8bb9f327f1041d7f886efee683da638da20 (diff) | |
download | GT5-Unofficial-e90db806d7f40c4d304a96054a32f5d5afe9a242.tar.gz GT5-Unofficial-e90db806d7f40c4d304a96054a32f5d5afe9a242.tar.bz2 GT5-Unofficial-e90db806d7f40c4d304a96054a32f5d5afe9a242.zip |
electro magic nanosuit loses pollution protection #2541
Fix pollution on EMT armor upgrades
https://github.com/GTNewHorizons/NewHorizons/issues/2541
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r-- | src/main/java/gregtech/common/GT_Proxy.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/GT_Proxy.java b/src/main/java/gregtech/common/GT_Proxy.java index fdeb3411fb..880db79838 100644 --- a/src/main/java/gregtech/common/GT_Proxy.java +++ b/src/main/java/gregtech/common/GT_Proxy.java @@ -496,6 +496,11 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler { GT_OreDictUnificator.registerOre("cropGrape", GT_ModHandler.getModItem("magicalcrops", "magicalcrops_CropProduce", 1L, 4));
GT_OreDictUnificator.registerOre("cropTea", GT_ModHandler.getModItem("ganyssurface", "teaLeaves", 1L, 0));
+ GregTech_API.sGasHazmatList.add(GT_ModHandler.getModItem("EMT", "NanoBootsTraveller", 1L, 32767));
+ GregTech_API.sGasHazmatList.add(GT_ModHandler.getModItem("EMT", "NanosuitGogglesRevealing", 1L, 32767));
+ GregTech_API.sGasHazmatList.add(GT_ModHandler.getModItem("EMT", "QuantumBootsTraveller", 1L, 32767));
+ GregTech_API.sGasHazmatList.add(GT_ModHandler.getModItem("EMT", "QuantumGogglesRevealing", 1L, 32767));
+
GregTech_API.sLoadStarted = true;
for (FluidContainerRegistry.FluidContainerData tData : FluidContainerRegistry.getRegisteredFluidContainerData()) {
if ((tData.filledContainer.getItem() == Items.potionitem) && (tData.filledContainer.getItemDamage() == 0)) {
|