Skip to content

Commit

Permalink
reduce eff because off miss calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
botn365 committed May 1, 2024
1 parent 9a9a7b4 commit 80a7259
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ public int getEfficiencyIncrease() {

@Override
int runtimeBoost(int mTime) {
return mTime * 10;
return mTime * 5;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ public int getEfficiencyIncrease() {

@Override
int runtimeBoost(int mTime) {
return 5 * mTime * 150 / 100;
return mTime * 375 / 100;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ public int getEfficiencyIncrease() {

@Override
int runtimeBoost(int mTime) {
return 5 * mTime * 130 / 100;
return mTime * 325 / 100;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public int getEfficiencyIncrease() {

@Override
int runtimeBoost(int mTime) {
return 5 * mTime * 120 / 100;
return mTime * 300 / 100;
}

}

0 comments on commit 80a7259

Please sign in to comment.