Remove min check on receive
The check broke pipes
This commit is contained in:
parent
1d7e160d2f
commit
42181dbc7f
1 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue