diff options
author | Martin Robertz <dream-master@gmx.net> | 2019-07-16 09:56:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-16 09:56:45 +0200 |
commit | 751aa918768533e6267d7467abb5dc247299d3c5 (patch) | |
tree | 609e8a0e4e73288b0fa96d53ef82ca0ec951dcc5 /src/main/java/gregtech/api/metatileentity/MetaTileEntity.java | |
parent | 30715b1438568a7594cbd7ef03e70f93adc76bdf (diff) | |
parent | ec3fba6409b5ccfdc90494c95fffc7cafd95a3f3 (diff) | |
download | GT5-Unofficial-751aa918768533e6267d7467abb5dc247299d3c5.tar.gz GT5-Unofficial-751aa918768533e6267d7467abb5dc247299d3c5.tar.bz2 GT5-Unofficial-751aa918768533e6267d7467abb5dc247299d3c5.zip |
Merge pull request #195 from GTNewHorizons/ic2_enet_compat
IC2 ENet compat for GT transformers & GT cables
Diffstat (limited to 'src/main/java/gregtech/api/metatileentity/MetaTileEntity.java')
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/MetaTileEntity.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/MetaTileEntity.java b/src/main/java/gregtech/api/metatileentity/MetaTileEntity.java index 5aced1f177..1753d2677c 100644 --- a/src/main/java/gregtech/api/metatileentity/MetaTileEntity.java +++ b/src/main/java/gregtech/api/metatileentity/MetaTileEntity.java @@ -86,10 +86,6 @@ public abstract class MetaTileEntity implements IMetaTileEntity { GT_LanguageManager.addStringLocalization("gt.blockmachines." + mName + ".name", aRegionalName); mInventory = new ItemStack[aInvSlotCount]; -// if (GT.isClientSide()) { -// ItemStack tStack = new ItemStack(GregTech_API.sBlockMachines, 1, aID); -// tStack.getItem().addInformation(tStack, null, new ArrayList<String>(), true); -// } } /** @@ -936,4 +932,6 @@ public abstract class MetaTileEntity implements IMetaTileEntity { public String getAlternativeModeText(){ return ""; } + + public boolean shouldJoinIc2Enet() { return false; } } |