From 19c2e85c445e0e64176624f3e3ae70d693426a5e Mon Sep 17 00:00:00 2001 From: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Date: Sat, 9 Aug 2025 02:10:40 +0200 Subject: [PATCH] Update missionInventoryUpdateService.ts --- src/services/missionInventoryUpdateService.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)