From 5faf1e2e16b154dbf40a32b35db27bd00f03cc13 Mon Sep 17 00:00:00 2001 From: Technus Date: Fri, 16 Jun 2017 10:12:23 +0200 Subject: Things cleanup --- src/main/java/gregtech/api/metatileentity/MetaTileEntity.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/gregtech/api/metatileentity') diff --git a/src/main/java/gregtech/api/metatileentity/MetaTileEntity.java b/src/main/java/gregtech/api/metatileentity/MetaTileEntity.java index 4a3941a2f9..511967d932 100644 --- a/src/main/java/gregtech/api/metatileentity/MetaTileEntity.java +++ b/src/main/java/gregtech/api/metatileentity/MetaTileEntity.java @@ -86,10 +86,10 @@ public abstract class MetaTileEntity implements IMetaTileEntity { GT_LanguageManager.addStringLocalization("gt.blockmachines." + mName + ".name", aRegionalName); mInventory = new ItemStack[aInvSlotCount]; - if (GT.isClientSide()) {//todo this was commented? do we need it? - ItemStack tStack = new ItemStack(GregTech_API.sBlockMachines, 1, aID); - tStack.getItem().addInformation(tStack, null, new ArrayList(), true); - } + //if (GT.isClientSide()) {//todo this was commented? do we need it? + // ItemStack tStack = new ItemStack(GregTech_API.sBlockMachines, 1, aID); + // tStack.getItem().addInformation(tStack, null, new ArrayList(), true); + //} } /** -- cgit