mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-19 05:49:32 +02:00
Add ChallengeType.FLIP_STAT case to export function applyChallenges (Master Switch Function)
This commit is contained in:
parent
6049cbd412
commit
172a8901e0
@ -975,6 +975,9 @@ export function applyChallenges(gameMode: GameMode, challengeType: ChallengeType
|
|||||||
case ChallengeType.MOVE_WEIGHT:
|
case ChallengeType.MOVE_WEIGHT:
|
||||||
ret ||= c.applyMoveWeight(args[0], args[1], args[2], args[3]);
|
ret ||= c.applyMoveWeight(args[0], args[1], args[2], args[3]);
|
||||||
break;
|
break;
|
||||||
|
case ChallengeType.FLIP_STAT:
|
||||||
|
ret ||= c.applyFlipStat(args[0], args[1]);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user