mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-19 15:54:09 +02:00
add fix for augmentations not reseting
This commit is contained in:
@@ -95,7 +95,7 @@ function getRandomBonus(): any {
|
||||
return bonuses[Math.floor(bonuses.length * randomNumber.random())];
|
||||
}
|
||||
|
||||
export const infiltratorsAugmentations = [
|
||||
export const initInfiltratorsAugmentations = (): Augmentation[] => [
|
||||
new Augmentation({
|
||||
name: AugmentationNames.BionicFingers,
|
||||
repCost: 15e1,
|
||||
@@ -251,7 +251,7 @@ export const infiltratorsAugmentations = [
|
||||
}),
|
||||
];
|
||||
|
||||
export const generalAugmentations = [
|
||||
export const initGeneralAugmentations = (): Augmentation[] => [
|
||||
new Augmentation({
|
||||
name: AugmentationNames.HemoRecirculator,
|
||||
moneyCost: 4.5e7,
|
||||
@@ -1643,7 +1643,7 @@ export const generalAugmentations = [
|
||||
}),
|
||||
];
|
||||
|
||||
export const bladeburnerAugmentations = [
|
||||
export const initBladeburnerAugmentations = (): Augmentation[] => [
|
||||
new Augmentation({
|
||||
name: AugmentationNames.EsperEyewear,
|
||||
repCost: 1.25e3,
|
||||
@@ -1908,7 +1908,7 @@ export const bladeburnerAugmentations = [
|
||||
}),
|
||||
];
|
||||
|
||||
export const churchOfTheMachineGodAugmentations = [
|
||||
export const initChurchOfTheMachineGodAugmentations = (): Augmentation[] => [
|
||||
new Augmentation({
|
||||
name: AugmentationNames.StaneksGift1,
|
||||
repCost: 0,
|
||||
|
||||
Reference in New Issue
Block a user