aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-02-04 16:48:16 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-02-04 16:48:16 +1000
commit0ac82fb73ed9bfdb3ea7b66a7ed6b44025faa03e (patch)
tree8f24879d652e068a2303496d6c694085d8707af8 /src/Java/gtPlusPlus/xmod/gregtech
parentc736d1091698a2ef1a4a4c953392683d12abdc93 (diff)
downloadGT5-Unofficial-0ac82fb73ed9bfdb3ea7b66a7ed6b44025faa03e.tar.gz
GT5-Unofficial-0ac82fb73ed9bfdb3ea7b66a7ed6b44025faa03e.tar.bz2
GT5-Unofficial-0ac82fb73ed9bfdb3ea7b66a7ed6b44025faa03e.zip
$ Fixed Field injection ASM doing double injections.
$ Fixed Super Chest ID collision. % Made Super Chests hold 1/2 as much.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredChest.java2
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperTanks.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredChest.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredChest.java
index e3c7cbded5..cc6a22c372 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredChest.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/storage/GT_MetaTileEntity_TieredChest.java
@@ -19,7 +19,7 @@ import net.minecraft.nbt.NBTTagCompound;
public class GT_MetaTileEntity_TieredChest extends GT_MetaTileEntity_TieredMachineBlock {
public int mItemCount = 0;
public ItemStack mItemStack = null;
- private final static double mStorageFactor = (270000.0D/8);
+ private final static double mStorageFactor = (270000.0D/16);
public GT_MetaTileEntity_TieredChest(int aID, String aName, String aNameRegional, int aTier) {
super(aID, aName, aNameRegional, aTier, 3,
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperTanks.java b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperTanks.java
index 3a5199197c..4f7ff4add9 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperTanks.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechSuperTanks.java
@@ -13,7 +13,7 @@ import gtPlusPlus.xmod.gregtech.common.tileentities.storage.GT_MetaTileEntity_Ti
public class GregtechSuperTanks {
public static void run() {
- int mId = 890;
+ int mId = 946;
GregtechItemList.Super_Chest_LV.set((new GT_MetaTileEntity_TieredChest(mId++, "super.chest.tier.01", "Super Chest I", 1)).getStackForm(1L));
GregtechItemList.Super_Chest_MV.set((new GT_MetaTileEntity_TieredChest(mId++, "super.chest.tier.02", "Super Chest II", 2)).getStackForm(1L));
GregtechItemList.Super_Chest_HV.set((new GT_MetaTileEntity_TieredChest(mId++, "super.chest.tier.03", "Super Chest III", 3)).getStackForm(1L));