few more bugfix

This commit is contained in:
Olivier Gagnon
2021-11-17 18:08:58 -05:00
parent 4730347330
commit ef40fb9bb2
7 changed files with 47 additions and 38 deletions
+9 -1
View File
@@ -105,7 +105,15 @@ export function generateResleeves(): Resleeve[] {
const randKey: string = augKeys[randIndex];
// Forbidden augmentations
if (randKey === AugmentationNames.TheRedPill || randKey === AugmentationNames.NeuroFluxGovernor) {
const forbidden = [
AugmentationNames.TheRedPill,
AugmentationNames.NeuroFluxGovernor,
AugmentationNames.StaneksGift1,
AugmentationNames.StaneksGift2,
AugmentationNames.StaneksGift3,
AugmentationNames.StaneksGift4,
];
if (forbidden.includes(randKey)) {
continue;
}