fix: cap spy rotations at C #2251

Merged
Sainan merged 1 commits from spy-cap into main 2025-06-23 04:54:37 -07:00

View File

@ -79,7 +79,7 @@ const getRotations = (rewardInfo: IRewardInfo, tierOverride?: number): number[]
if (rewardInfo.VaultsCracked) { if (rewardInfo.VaultsCracked) {
const rotations: number[] = []; const rotations: number[] = [];
for (let i = 0; i != rewardInfo.VaultsCracked; ++i) { for (let i = 0; i != rewardInfo.VaultsCracked; ++i) {
rotations.push(i); rotations.push(Math.min(i, 2));
} }
return rotations; return rotations;
} }