Skip to content

Commit

Permalink
fix(workers): workers now operate at 95% efficiency of the player
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Mar 27, 2023
1 parent 98d74c2 commit dc8da4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/workers/workers.functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function resetWorkers(ctx: StateContext<IGameWorkers>) {
}

export function workerTimerMultiplier(workerMultiplierLevel = 1) {
return 0.05 * workerMultiplierLevel;
return 0.95 * workerMultiplierLevel;
}

export function upkeepCost(numWorkers: number) {
Expand Down

0 comments on commit dc8da4f

Please sign in to comment.