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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user