This commit is contained in:
parent
4b75dbbadf
commit
c41f1ff53e
@ -1773,17 +1773,13 @@ export const addChallenges = (
|
||||
];
|
||||
}
|
||||
|
||||
let standingToAdd = meta.standing ?? 0;
|
||||
if (standingToAdd >= 0) {
|
||||
standingToAdd *= config.nightwaveStandingMultiplier ?? 1;
|
||||
affiliation.Standing += standingToAdd;
|
||||
|
||||
if (affiliationMods.length == 0) {
|
||||
affiliationMods.push({ Tag: nightwaveSyndicateTag });
|
||||
}
|
||||
affiliationMods[0].Standing ??= 0;
|
||||
affiliationMods[0].Standing += standingToAdd;
|
||||
const standingToAdd = meta.standing! * (config.nightwaveStandingMultiplier ?? 1);
|
||||
affiliation.Standing += standingToAdd;
|
||||
if (affiliationMods.length == 0) {
|
||||
affiliationMods.push({ Tag: nightwaveSyndicateTag });
|
||||
}
|
||||
affiliationMods[0].Standing ??= 0;
|
||||
affiliationMods[0].Standing += standingToAdd;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user