make place name for efficient during spawn

This commit is contained in:
evanpelle
2025-02-01 12:05:11 -08:00
committed by Evan
parent e4f0d76733
commit 8fea4d7bfa
2 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export class DevConfig extends DefaultConfig {
unitInfo(type: UnitType): UnitInfo {
const info = super.unitInfo(type)
const oldCost = info.cost
info.cost = (p: Player) => oldCost(p) / 10000
// info.cost = (p: Player) => oldCost(p) / 10000
return info
}