diff --git a/src/tconstruct/library/tools/ToolCore.java b/src/tconstruct/library/tools/ToolCore.java index 619856e93b7..6ce18fdb866 100644 --- a/src/tconstruct/library/tools/ToolCore.java +++ b/src/tconstruct/library/tools/ToolCore.java @@ -59,7 +59,7 @@ * @see ToolMod */ -public abstract class ToolCore extends Item implements ICustomElectricItem, IBoxable, IBattlegearWeapon, IStorageCell, IAEChargeableItem +public abstract class ToolCore extends Item implements ICustomElectricItem, IBoxable, IBattlegearWeapon//, IStorageCell, IAEChargeableItem { protected Random random = new Random(); protected int damageVsEntity; @@ -992,7 +992,7 @@ public void performPassiveEffects (Side effectiveSide, ItemStack mainhandItem, I } /* Applied Energistics support, IAEChargableItem */ - @Override + /*@Override public float addEnergy (ItemStack target, float energy) { // TODO Auto-generated method stub @@ -1004,10 +1004,10 @@ public boolean isChargeable (ItemStack it) { // TODO Auto-generated method stub return false; - } + }*/ /* Applied Energistics support, IStorageCell */ - @Override + /*@Override public int getBytes (ItemStack cellItem) { // TODO Auto-generated method stub @@ -1039,7 +1039,5 @@ public boolean storableInStorageCell () { // TODO Auto-generated method stub return false; - } - - //Start new methods! + }*/ }