Skip to content

Commit

Permalink
change energy scaling slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
ghzdude committed Dec 22, 2023
1 parent 1c38735 commit 21dad72
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ public void rebuildNetwork() {

energyConsumption += switch (storage.getType()) {
case ITEM, FLUID -> {
int tier = storage instanceof ITieredMetaTileEntity tieredMTE ? tieredMTE.getTier() : 0;
yield GTValues.V[tier / 2] / 2;
int tier = storage instanceof ITieredMetaTileEntity tieredMTE ? tieredMTE.getTier() : 1;
yield GTValues.V[tier] / 2;
}
case PROXY -> 2L;
case EXTENDER -> 1L;
Expand Down

0 comments on commit 21dad72

Please sign in to comment.