Skip to content

Commit

Permalink
Actually fix the bug... why am I developing this late at night...
Browse files Browse the repository at this point in the history
  • Loading branch information
Pseudonian committed Jan 14, 2025
1 parent 0b44478 commit ede73a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SingularityChallenges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ export const singularityChallengeData: Record<
uniquerewardcount: 3,
effect: (n: number) => {
return {
octeractPow: (n >= 10) ? 0.02 * n : 0.2 + (n - 10) / 100,
octeractPow: (n <= 10) ? 0.02 * n : 0.2 + (n - 10) / 100,
offeringBonus: n > 0,
obtainiumBonus: n >= 10,
shopUpgrade: n >= 10
Expand Down

0 comments on commit ede73a0

Please sign in to comment.