give Hunts/AllTeralystsHunt reward only on last stage
All checks were successful
Build / build (pull_request) Successful in 1m25s

This commit is contained in:
AMelonInsideLemon 2025-04-11 21:32:45 +02:00
parent afa5057c97
commit 56160db80c

View File

@ -766,6 +766,9 @@ export const addMissionRewards = async (
if (jobType.endsWith("Heists/HeistProfitTakerBountyOne") && rewardInfo.JobStage === 2) { if (jobType.endsWith("Heists/HeistProfitTakerBountyOne") && rewardInfo.JobStage === 2) {
AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 1000)); AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 1000));
} }
if (jobType.endsWith("Hunts/AllTeralystsHunt") && rewardInfo.JobStage === 2) {
AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 5000));
}
if ( if (
[ [
"Hunts/TeralystHunt", "Hunts/TeralystHunt",
@ -777,9 +780,6 @@ export const addMissionRewards = async (
) { ) {
AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 1000)); AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 1000));
} }
if (jobType.endsWith("Hunts/AllTeralystsHunt")) {
AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 5000));
}
} }
} }
} }