Add ChallengeType.FLIP_STAT case to export function applyChallenges (Master Switch Function)

This commit is contained in:
Scooom 2025-01-06 18:16:13 -06:00
parent 6049cbd412
commit 172a8901e0

View File

@ -975,6 +975,9 @@ export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType
case ChallengeType.MOVE_WEIGHT:
ret ||= c.applyMoveWeight(args[0], args[1], args[2], args[3]);
break;
case ChallengeType.FLIP_STAT:
ret ||= c.applyFlipStat(args[0], args[1]);
break;
}
}
});