From 56160db80cae30191c01a0959d4131bc117611f5 Mon Sep 17 00:00:00 2001 From: AMelonInsideLemon <166175391+AMelonInsideLemon@users.noreply.github.com> Date: Fri, 11 Apr 2025 21:32:45 +0200 Subject: [PATCH] give `Hunts/AllTeralystsHunt` reward only on last stage --- src/services/missionInventoryUpdateService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/services/missionInventoryUpdateService.ts b/src/services/missionInventoryUpdateService.ts index 36cc50c0..e6492a6e 100644 --- a/src/services/missionInventoryUpdateService.ts +++ b/src/services/missionInventoryUpdateService.ts @@ -766,6 +766,9 @@ export const addMissionRewards = async ( if (jobType.endsWith("Heists/HeistProfitTakerBountyOne") && rewardInfo.JobStage === 2) { AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 1000)); } + if (jobType.endsWith("Hunts/AllTeralystsHunt") && rewardInfo.JobStage === 2) { + AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 5000)); + } if ( [ "Hunts/TeralystHunt", @@ -777,9 +780,6 @@ export const addMissionRewards = async ( ) { AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 1000)); } - if (jobType.endsWith("Hunts/AllTeralystsHunt")) { - AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 5000)); - } } } }