From 2636ccdd67b5f33421ab7f9152021bc4ebc147b3 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Tue, 7 Feb 2017 20:16:24 +0300 Subject: Fixed an ore dictionary recipes of Iron workbench which using wrong set of items. Fixed wire recipe input. All recipes of Iron workbench now use fluid container input and will drop an empty container. --- ihl/IHLModConfig.java | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ihl/IHLModConfig.java') diff --git a/ihl/IHLModConfig.java b/ihl/IHLModConfig.java index c48acba..f62ca7d 100644 --- a/ihl/IHLModConfig.java +++ b/ihl/IHLModConfig.java @@ -41,6 +41,8 @@ import net.minecraft.nbt.NBTTagCompound; public class IHLModConfig { + public int explosionVectorSizeBits=8; + public int handpumpTier=1; public int handpumpMaxCharge=30000; public int handpumpOperationEUCost=180; @@ -169,6 +171,8 @@ public class IHLModConfig mirrorReflectionRange = config.get(Configuration.CATEGORY_GENERAL, "mirrorReflectionRange", mirrorReflectionRange).getInt(); mirrorReflectionUpdateSpeed = config.get(Configuration.CATEGORY_GENERAL, "mirrorReflectionUpdateSpeed", mirrorReflectionUpdateSpeed).getInt(); + explosionVectorSizeBits = config.get(Configuration.CATEGORY_GENERAL, "explosionVectorSizeBits", explosionVectorSizeBits).getInt(); + Property blp = config.get(Configuration.CATEGORY_GENERAL, "ts02BlockBlackList", bl); Property wlp = config.get(Configuration.CATEGORY_GENERAL, "ts02BlockWhiteList", wl); if(blp.isList()) -- cgit v1.2.3