diff --git a/src/services/missionInventoryUpdateService.ts b/src/services/missionInventoryUpdateService.ts index 86c414f5..ce9920c8 100644 --- a/src/services/missionInventoryUpdateService.ts +++ b/src/services/missionInventoryUpdateService.ts @@ -1449,7 +1449,11 @@ function getRandomMissionDrops( } } rewardManifests = [job.rewards]; - rotations = [RewardInfo.JobStage! % (job.xpAmounts.length - 1)]; + if (job.xpAmounts.length > 1) { + rotations = [RewardInfo.JobStage! % (job.xpAmounts.length - 1)]; + } else { + rotations = [RewardInfo.JobStage!]; + } if ( RewardInfo.Q && (RewardInfo.JobStage === job.xpAmounts.length - 1 || job.isVault) &&