From 6fe192d0af1a4e92d55d4a9bf2512ffae5d5f0a4 Mon Sep 17 00:00:00 2001 From: variablevince <24507472+VariableVince@users.noreply.github.com> Date: Sun, 26 Oct 2025 00:16:32 +0200 Subject: [PATCH] Fix --- src/core/game/PlayerImpl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/game/PlayerImpl.ts b/src/core/game/PlayerImpl.ts index fe88cb1a3..5dd3ce41b 100644 --- a/src/core/game/PlayerImpl.ts +++ b/src/core/game/PlayerImpl.ts @@ -926,7 +926,7 @@ export class PlayerImpl implements Player { inSpawnPhase || tile === null ? false : this.canBuild(u, tile, validTiles), - canUpgrade, + canUpgrade: canUpgrade, cost: this.mg.config().unitInfo(u).cost(this), } as BuildableUnit); }