Remove min check on receive

The check broke pipes
This commit is contained in:
CovertJaguar 2013-06-26 08:50:25 -07:00
parent 1d7e160d2f
commit 42181dbc7f

View file

@ -227,9 +227,6 @@ public final class PowerProvider {
* @return the amount of power used
*/
public float receiveEnergy(float quantity, ForgeDirection from) {
if (quantity < minEnergyReceived) {
return 0;
}
if (quantity > maxEnergyReceived) {
quantity -= quantity - maxEnergyReceived;
}