From 634731f81c61338f362e6981303963c47f4049e0 Mon Sep 17 00:00:00 2001 From: teisuru <31881306+teisuru@users.noreply.github.com> Date: Mon, 30 Oct 2023 00:25:26 +0100 Subject: fix burgundians cap --- rules.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rules.js b/rules.js index 2794969..e2262bf 100644 --- a/rules.js +++ b/rules.js @@ -5138,9 +5138,10 @@ function count_deplete(loc) { // === CAPABILITY : BURGUNDIANS === function can_levy_burgundians(lord) { + console.log(game.flags.burgundians) if (is_seaport(get_lord_locale(lord)) && !is_exile(get_lord_locale(lord)) && lord_has_capability(lord, AOW_YORK_BURGUNDIANS) && game.flags.burgundians === 0) { add_lord_forces(lord, BURGUNDIANS, 2) - game.flags.burgundians === 1 + game.flags.burgundians = 1 } } -- cgit v1.2.3