Fix single pulse : account for the baked in energy loss..

This commit is contained in:
Christian 2013-09-26 00:01:12 -04:00
parent 68b5c5267d
commit f35ea290e5
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ public class EnergyPulser {
return;
if (!singlePulse || !hasPulsed) {
powerReceptor.getPowerReceiver(null).receiveEnergy(Type.GATE, Math.min(1 << (pulseCount - 1), 64), ForgeDirection.WEST);
powerReceptor.getPowerReceiver(null).receiveEnergy(Type.GATE, Math.min(1 << (pulseCount - 1), 64) *1.01f, ForgeDirection.WEST);
hasPulsed = true;
}
}

View file

@ -54,7 +54,7 @@ public class PipeItemsWood extends Pipe<PipeTransportItems> implements IPowerRec
super(new PipeTransportItems(), itemID);
powerHandler = new PowerHandler(this, Type.MACHINE);
powerHandler.configure(1, 64, 1, 64);
powerHandler.configure(1, 64.1f, 1, 64.1f);
powerHandler.configurePowerPerdition(0, 0);
}