From ecc60485f31011bf9cc6a02edb985fb683793bb7 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Thu, 21 Dec 2017 15:48:47 +1000 Subject: + Added a dimension ID config option which it now will try use if available. % More work on the Dimension again. $ Fixed NPE caused by disabled material handler. $ Fixed bad fluid used in world generation. # Fixed spawn rate of mobs in custom dimension. --- src/Java/gtPlusPlus/xmod/forestry/trees/TreefarmManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/forestry/trees') diff --git a/src/Java/gtPlusPlus/xmod/forestry/trees/TreefarmManager.java b/src/Java/gtPlusPlus/xmod/forestry/trees/TreefarmManager.java index 9aea37e0d4..155feae83c 100644 --- a/src/Java/gtPlusPlus/xmod/forestry/trees/TreefarmManager.java +++ b/src/Java/gtPlusPlus/xmod/forestry/trees/TreefarmManager.java @@ -100,10 +100,10 @@ public class TreefarmManager { public static boolean isSapling(final Block log){ if (log != null){ if (OrePrefixes.sapling.contains(new ItemStack(log, 1))){ - Logger.INFO(""+log.getLocalizedName()); + Logger.WARNING(""+log.getLocalizedName()); } if (log.getLocalizedName().toLowerCase().contains("sapling")){ - Logger.INFO(""+log.getLocalizedName()); + Logger.WARNING(""+log.getLocalizedName()); return true; } } -- cgit