make unit cost scale up w/ # units

This commit is contained in:
Evan
2024-11-25 11:42:40 -08:00
parent 5997262416
commit 6fd35b00cd
4 changed files with 8 additions and 9 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ export const devConfig = new class extends DefaultConfig {
unitInfo(type: UnitType): UnitInfo {
const info = super.unitInfo(type)
const oldCost = info.cost
info.cost = (p: Player) => oldCost(p) / 100
// info.cost = (p: Player) => oldCost(p) / 100
return info
}