From 89fb1c0f14c871d80b3fdd76ca1faaa51ccfc42e Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 6 Apr 2025 09:11:13 -0700 Subject: [PATCH] make atom bombs 750k again --- src/core/configuration/DefaultConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 33da4cbc2..28626f7f0 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -268,7 +268,7 @@ export class DefaultConfig implements Config { case UnitType.AtomBomb: return { cost: (p: Player) => - p.type() == PlayerType.Human && this.infiniteGold() ? 0 : 500_000, + p.type() == PlayerType.Human && this.infiniteGold() ? 0 : 750_000, territoryBound: false, }; case UnitType.HydrogenBomb: