don't render player info on top of exit button, render unit type

This commit is contained in:
Evan
2024-12-19 10:57:41 -08:00
parent 65cf2a7c19
commit 66fbe8e6b4
5 changed files with 151 additions and 109 deletions
+1 -1
View File
@@ -8,7 +8,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) / 20
info.cost = (p: Player) => oldCost(p) / 10000
return info
}