From 655d4cb31abca1f377ea7b71e87a122f4d6f5528 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Thu, 12 Oct 2023 16:10:55 +0200 Subject: build cost fix --- rules.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/rules.js b/rules.js index 5ac85a6..844315d 100644 --- a/rules.js +++ b/rules.js @@ -1912,12 +1912,9 @@ function build_fln_unit(type, where) { log(`Built U${u} in A${where}`) set_unit_loc(u, where) set_unit_box(u, UG) - let cost = build_cost(type, where) + let cost = build_cost(where) game.fln_ap -= cost log(`>Paid ${cost} AP`) - if (game.fln_ap < 0) { - throw new Error("ASSERT game.fln_ap < 0") - } } function convert_fln_unit(u, type) { @@ -1930,9 +1927,6 @@ function convert_fln_unit(u, type) { let cost = convert_cost(type) game.fln_ap -= cost log(`>Paid ${cost} AP`) - if (game.fln_ap < 0) { - throw new Error("ASSERT game.fln_ap < 0") - } } states.fln_reinforcement = { -- cgit v1.2.3