Skip to content

Commit

Permalink
Comment out AppliedEnergistics support temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
mDiyo committed Oct 2, 2013
1 parent 349b124 commit f954784
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/tconstruct/library/tools/ToolCore.java
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -1039,7 +1039,5 @@ public boolean storableInStorageCell ()
{
// TODO Auto-generated method stub
return false;
}

//Start new methods!
}*/
}

0 comments on commit f954784

Please sign in to comment.