From 5aec46ffb855440256e27fc3c03c3c412b7af21d Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 3 Sep 2016 03:09:40 +1000 Subject: + Basically finished the Power Sub-Station in a single commit. > It needs proper power storage and the shape needs refining, but otherwise works good. --- src/Java/miscutil/core/util/Utils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/miscutil/core/util') diff --git a/src/Java/miscutil/core/util/Utils.java b/src/Java/miscutil/core/util/Utils.java index 02363927a1..cbd488afab 100644 --- a/src/Java/miscutil/core/util/Utils.java +++ b/src/Java/miscutil/core/util/Utils.java @@ -486,7 +486,7 @@ public class Utils { methode.setAccessible(true); Utils.LOG_WARNING("7 "+methode.isAccessible()); ItemStack temp = (ItemStack) methode.invoke(item, cellID++, yourName, new Block[0]); - Utils.LOG_INFO("8 "+temp.getDisplayName()); + Utils.LOG_INFO("Successfully created "+temp.getDisplayName()+"s."); FluidContainerRegistry.registerFluidContainer(FluidUtils.getFluidStack(s.toLowerCase(), 0), temp.copy(), Ic2Items.cell.copy()); UtilsItems.addItemToOreDictionary(temp.copy(), "cell"+s); return temp; -- cgit