diff --git a/src/Challenges.ts b/src/Challenges.ts index 066e8b3da..04ea54e61 100644 --- a/src/Challenges.ts +++ b/src/Challenges.ts @@ -586,7 +586,7 @@ export const runChallengeSweep = (dt: number) => { // This calculates which challenge this algorithm will run first, based on // the first challenge which has automation toggled ON let startChallenge = 1; - for (const item of player.autoChallengeToggles) { + for (const item of player.autoChallengeToggles.slice(1,10)) { if (!item) startChallenge++; else break; }