diff --git a/src/commands/jobs.ts b/src/commands/jobs.ts index 34eae1e..1d35b20 100644 --- a/src/commands/jobs.ts +++ b/src/commands/jobs.ts @@ -36,7 +36,9 @@ export class JobsCommand extends Subcommand { setInterval(() => { this.updateMotivation(); - }, 10 * 60_000); + }, 4 * 60 * 60 * 1000); + + this.updateMotivation(); } registerApplicationCommands(registry: Subcommand.Registry) { @@ -395,7 +397,7 @@ export class JobsCommand extends Subcommand { const alteredCards: Card[] = []; for (const card of cards) { - if (card.jobMotivation < 7 && Math.random() < 0.2) { + if (card.jobMotivation < 7) { card.jobMotivation++; alteredCards.push(card); }