Fix Matter Condenser's math & remove Player's maven (#316)

* Remove Player's maven

* Fix Matter Condenser's math

Fixes outputs getting geometrically compounded
This commit is contained in:
Neeve
2023-10-12 04:27:35 +11:00
committed by GitHub
parent 60211cccdd
commit d528d9f205
2 changed files with 5 additions and 9 deletions
@@ -118,7 +118,7 @@ public class TileCondenser extends AEBaseInvTile implements IConfigManagerHost,
while (requiredPower <= this.getStoredPower() && !output.isEmpty() && requiredPower > 0) {
if (this.canAddOutput(output)) {
this.setStoredPower(this.getStoredPower() - requiredPower);
this.addOutput(output);
this.addOutput(output.copy());
} else {
break;
}
@@ -176,7 +176,7 @@ public class TileCondenser extends AEBaseInvTile implements IConfigManagerHost,
while (requiredPower <= this.getStoredPower() && !output.isEmpty() && requiredPower > 0) {
if (this.canAddOutput(output)) {
this.setStoredPower(this.getStoredPower() - requiredPower);
this.addOutput(output);
this.addOutput(output.copy());
} else {
break;
}