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)); - } } } }