fix broken rebase

This commit is contained in:
Snarling
2022-09-27 16:23:53 -04:00
parent 25be5c2990
commit 16fac67257
3 changed files with 3 additions and 6 deletions
-4
View File
@@ -280,10 +280,6 @@ export class Sleeve extends Person {
return true;
}
hasAugmentation(aug: string): boolean {
return this.augmentations.some((a) => a.name === aug);
}
tryBuyAugmentation(aug: Augmentation): boolean {
if (!Player.canAfford(aug.baseCost)) {
return false;