Skip to content

Commit 8f3ab90

Browse files
committed
fix 1 million
1 parent 04f2682 commit 8f3ab90

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/modules/achievements/achievementDefinitions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,11 @@ const XP_ACHIEVEMENTS: AchievementDefinition[] = [
229229
{
230230
id: "xp_100000",
231231
name: "XP Millionaire",
232-
description: "Earn 100,000 XP",
232+
description: "Earn 1,000,000 XP",
233233
emoji: "💰",
234234
category: "xp",
235235
trigger: { type: "xp", event: "xp_gained" },
236-
checkCondition: (ctx) => (ctx.totalXp ?? 0n) >= 100000n,
236+
checkCondition: (ctx) => (ctx.totalXp ?? 0n) >= 1_000_000n,
237237
},
238238
];
239239

0 commit comments

Comments
 (0)