Run Prettier

This commit is contained in:
2025-02-22 13:32:07 -08:00
parent 9e7ca67f55
commit bfc1e53f3e
12 changed files with 163 additions and 90 deletions

View File

@ -70,7 +70,7 @@ class SkillsTable {
}
isAtMinimum(skill: Skill) {
let minimumCost = this.get(skill).governing.cost
let minimumCost = this.get(skill).governing.cost;
let currentCost = this.computeCost(skill);
return currentCost <= minimumCost;
}