diff --git a/src/client/index.html b/src/client/index.html index dc6757f6a..c457593ac 100644 --- a/src/client/index.html +++ b/src/client/index.html @@ -31,7 +31,16 @@

(v0.9.0)

+
+ +
diff --git a/src/core/configuration/DevConfig.ts b/src/core/configuration/DevConfig.ts index f7557411d..e25e10d40 100644 --- a/src/core/configuration/DevConfig.ts +++ b/src/core/configuration/DevConfig.ts @@ -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) / 1000000 + info.cost = (p: Player) => oldCost(p) / 5 return info } @@ -14,6 +14,7 @@ export const devConfig = new class extends DefaultConfig { } numSpawnPhaseTurns(): number { return 40 + // return 100 } gameCreationRate(): number { return 20 * 1000