diff options
author | Technus <daniel112092@gmail.com> | 2017-06-16 10:12:23 +0200 |
---|---|---|
committer | Technus <daniel112092@gmail.com> | 2017-06-16 10:12:23 +0200 |
commit | 5faf1e2e16b154dbf40a32b35db27bd00f03cc13 (patch) | |
tree | 969875b7b4c75e8759734c963443eb7deb376c07 /src/main/java/gregtech/api/metatileentity | |
parent | 3d67f6b93f134345ef251e88684e2358e0c769fc (diff) | |
download | GT5-Unofficial-5faf1e2e16b154dbf40a32b35db27bd00f03cc13.tar.gz GT5-Unofficial-5faf1e2e16b154dbf40a32b35db27bd00f03cc13.tar.bz2 GT5-Unofficial-5faf1e2e16b154dbf40a32b35db27bd00f03cc13.zip |
Things cleanup
Diffstat (limited to 'src/main/java/gregtech/api/metatileentity')
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/MetaTileEntity.java | 8 |
1 files changed, 4 insertions, 4 deletions
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<String>(), 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<String>(), true); + //} } /** |