Skip to content

Commit

Permalink
Fix cost
Browse files Browse the repository at this point in the history
  • Loading branch information
TastyPumPum committed Jul 21, 2024
1 parent f7b3b51 commit 59a64ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export async function managingMiscellaniaCommand(
const duration = Time.Minute * 1 + Time.Second * 5 * daysDifference;

const daysDifferenceInteger = Math.floor(daysDifference);
const cofferCostInteger = Math.min(daysDifferenceInteger * 7_500, 750_000);
const cofferCostInteger = Math.min(daysDifferenceInteger * 75_000, 7_500_000);

const cofferCost = BigInt(cofferCostInteger);

Expand Down
2 changes: 1 addition & 1 deletion src/tasks/managingMiscellaniaActivity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const managingMiscellaniaTask: MinionTask = {
const secondary = secondary_collect;
const cofferMax = 75000;

const daysDifference = Math.round(cofferCost / 7500);
const daysDifference = Math.round(cofferCost / 75_000);

const workerEffectiveness = (cofferMax * 100) / 8333;

Expand Down

0 comments on commit 59a64ec

Please sign in to comment.