feat(goals): cetus events #2598

Merged
Sainan merged 5 commits from AMelonInsideLemon/SpaceNinjaServer:goals-cetus into main 2025-08-11 08:08:41 -07:00
Showing only changes of commit 19c2e85c44 - Show all commits

View File

@ -1333,7 +1333,7 @@ export const addMissionRewards = async (
`Giving ${medallionAmount} medallions for the ${rewardInfo.JobStage} stage of the ${rewardInfo.JobTier} tier bounty`
);
} else {
const specialСase = [
const specialCase = [
{ endings: ["Heists/HeistProfitTakerBountyOne"], stage: 2, amount: 1000 },
{ endings: ["Hunts/AllTeralystsHunt"], stage: 2, amount: 5000 },
{
@ -1347,7 +1347,7 @@ export const addMissionRewards = async (
amount: 1000
}
];
const specialCaseReward = specialСase.find(
const specialCaseReward = specialCase.find(
rule =>
rule.endings.some(e => jobType.endsWith(e)) &&
(rule.stage === undefined || rewardInfo.JobStage === rule.stage)