This commit is contained in:
Olivier Gagnon
2021-10-12 00:29:16 -04:00
parent 78d9c25671
commit 83137a2364
13 changed files with 346 additions and 52 deletions
+1 -2
View File
@@ -30,8 +30,7 @@ export function Augmentations(props: IProps): React.ReactElement {
}
function queueAllAugs(): void {
for (const i in AugmentationNames) {
const augName = AugmentationNames[i];
for (const augName of Object.keys(AugmentationNames)) {
props.player.queueAugmentation(augName);
}
}