Removed Display Name Logging.

This commit is contained in:
AlgorithmX2
2014-07-14 09:27:41 -05:00
parent c6e6aca7cb
commit 6d43d21067
2 changed files with 1 additions and 16 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
package appeng.crafting;
import appeng.api.storage.data.IAEItemStack;
import appeng.util.Platform;
public class CraftBranchFailure extends Exception
{
@@ -11,7 +10,7 @@ public class CraftBranchFailure extends Exception
IAEItemStack missing;
public CraftBranchFailure(IAEItemStack what, long howMany) {
super( "Failed: " + Platform.getItemDisplayName( what ) + " x " + howMany );
super( "Failed: " + what.getItem().getUnlocalizedName() + " x " + howMany );
missing = what.copy();
missing.setStackSize( howMany );
}