diff --git a/src/services/missionInventoryUpdateService.ts b/src/services/missionInventoryUpdateService.ts index a498d2e6..8b056956 100644 --- a/src/services/missionInventoryUpdateService.ts +++ b/src/services/missionInventoryUpdateService.ts @@ -1333,7 +1333,7 @@ export const addMissionRewards = async ( `Giving ${medallionAmount} medallions for the ${rewardInfo.JobStage} stage of the ${rewardInfo.JobTier} tier bounty` ); } else { - const specialДase = [ + const specialCase = [ { endings: ["Heists/HeistProfitTakerBountyOne"], stage: 2, amount: 1000 }, { endings: ["Hunts/AllTeralystsHunt"], stage: 2, amount: 5000 }, { @@ -1347,7 +1347,7 @@ export const addMissionRewards = async ( amount: 1000 } ]; - const specialCaseReward = specialДase.find( + const specialCaseReward = specialCase.find( rule => rule.endings.some(e => jobType.endsWith(e)) && (rule.stage === undefined || rewardInfo.JobStage === rule.stage)