mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-08 00:27:47 +02:00
fix broken rebase
This commit is contained in:
@@ -50,6 +50,7 @@ export abstract class Person {
|
||||
regenerateHp = personMethods.regenerateHp;
|
||||
queryStatFromString = personMethods.queryStatFromString;
|
||||
updateSkillLevels = personMethods.updateSkillLevels;
|
||||
hasAugmentation = personMethods.hasAugmentation;
|
||||
calculateSkill = calculateSkill; //Class version is equal to imported version
|
||||
|
||||
/** Reset all multipliers to 1 */
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user