fix config build error, better logging in game server

This commit is contained in:
Evan
2024-12-16 20:11:53 -08:00
committed by evanpelle
parent aff674ebaf
commit d99b60b477
4 changed files with 41 additions and 14 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) / 1000000
info.cost = (p: Player) => oldCost(p) / 20
return info
}