feat: bounty standing reward #1556

Merged
Sainan merged 12 commits from AMelonInsideLemon/SpaceNinjaServer:bounty-standing-rewards into main 2025-04-12 06:13:45 -07:00
Showing only changes of commit 56160db80c - Show all commits

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