fix: don't give rewards for aborted railjack missions
This commit is contained in:
parent
0f3d9f6c2c
commit
8e8de312b4
@ -71,7 +71,12 @@ const getRotations = (rewardInfo: IRewardInfo, tierOverride?: number): number[]
|
||||
return [rewardInfo.rewardTier];
|
||||
}
|
||||
|
||||
const rotationCount = rewardInfo.rewardQualifications?.length || 0;
|
||||
// Aborting a railjack mission should not give any rewards (https://onlyg.it/OpenWF/SpaceNinjaServer/issues/1741)
|
||||
if (rewardInfo.rewardQualifications === undefined) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const rotationCount = rewardInfo.rewardQualifications.length || 0;
|
||||
if (rotationCount === 0) return [0];
|
||||
|
||||
const rotationPattern =
|
||||
|
Loading…
x
Reference in New Issue
Block a user