Removed sout lines

This commit is contained in:
modmuss50 2015-11-22 10:33:21 +00:00
parent 48a7f1cc6d
commit 05e7ecf2f3
5 changed files with 4 additions and 5 deletions

View file

@ -43,7 +43,6 @@ public class TileChemicalReactor extends TilePowerAcceptor implements IWrenchabl
{
if(getStackInSlot(slot) != null)
{
System.out.println("hi");
if(getStackInSlot(slot).getItem() instanceof IElectricItem)
{
if(getEnergy() != getMaxPower())

View file

@ -150,7 +150,6 @@ public class TileDieselGenerator extends TilePowerAcceptor implements IWrenchabl
if (getFreeSpace() >= powerIn) {
addEnergy(powerIn, false);
tank.drain(1, true);
System.out.println(getEnergy() + ":" + tank.getFluidAmount());
}
}
}