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