Heists/HeistProfitTakerBountyOne: give standing only on last stage

This commit is contained in:
AMelonInsideLemon 2025-04-11 03:40:14 +02:00
parent 6f65f9e876
commit c23b9c7054
2 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,7 @@ import { addMissionInventoryUpdates, addMissionRewards } from "@/src/services/mi
import { getInventory } from "@/src/services/inventoryService"; import { getInventory } from "@/src/services/inventoryService";
import { getInventoryResponse } from "./inventoryController"; import { getInventoryResponse } from "./inventoryController";
import { logger } from "@/src/utils/logger"; import { logger } from "@/src/utils/logger";
import { ExportRegions } from "warframe-public-export-plus";
/* /*
**** INPUT **** **** INPUT ****

View File

@ -764,10 +764,12 @@ export const addMissionRewards = async (
addStanding(inventory, syndicateEntry.Tag, currentJob.xpAmounts[rewardInfo.JobStage]) addStanding(inventory, syndicateEntry.Tag, currentJob.xpAmounts[rewardInfo.JobStage])
); );
} else { } else {
if (jobType.endsWith("Heists/HeistProfitTakerBountyOne") && rewardInfo.JobStage === 2) {
AffiliationMods.push(addStanding(inventory, syndicateEntry.Tag, 1000));
}
if ( if (
[ [
"Hunts/TeralystHunt", "Hunts/TeralystHunt",
"Heists/HeistProfitTakerBountyOne",
"Heists/HeistProfitTakerBountyTwo", "Heists/HeistProfitTakerBountyTwo",
"Heists/HeistProfitTakerBountyThree", "Heists/HeistProfitTakerBountyThree",
"Heists/HeistProfitTakerBountyFour", "Heists/HeistProfitTakerBountyFour",