From 471be859b3e474c1dec35970300b1aeb63bf3fea Mon Sep 17 00:00:00 2001 From: Alkalus Date: Tue, 4 Jul 2017 10:52:11 +1000 Subject: + Added Coal Tar. + Added Coal Tar Recipes. - Removed some bad debugging from the Coke Oven. $ Disabled a check in the fluid generator which in rare cases caused them not to be created. --- src/Java/gtPlusPlus/core/util/fluid/FluidUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/core/util') diff --git a/src/Java/gtPlusPlus/core/util/fluid/FluidUtils.java b/src/Java/gtPlusPlus/core/util/fluid/FluidUtils.java index 882f3f1eb4..aa44c24440 100644 --- a/src/Java/gtPlusPlus/core/util/fluid/FluidUtils.java +++ b/src/Java/gtPlusPlus/core/util/fluid/FluidUtils.java @@ -432,7 +432,7 @@ public class FluidUtils { if (dustStack == null){ dustStack = ItemUtils.getItemStackOfAmountFromOreDictNoBroken("dust"+Utils.sanitizeString(localizedName), 1); } - if ((FluidUtils.getFluidStack(unlocalizedName.toLowerCase(), 1) == null) && ((dustStack != null) || (dustStack2 != null))){ + if ((FluidUtils.getFluidStack(unlocalizedName.toLowerCase(), 1) == null)/* && ((dustStack != null) || (dustStack2 != null))*/){ Utils.LOG_WARNING("Generating our own fluid."); //Generate a Cell if we need to -- cgit