diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2023-10-30 00:25:26 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | 634731f81c61338f362e6981303963c47f4049e0 (patch) | |
tree | 5880ff95899545e5e820fc92902f7d56bceeec6c | |
parent | 587b9a16f22b528940d6242656278e8722082b79 (diff) | |
download | plantagenet-634731f81c61338f362e6981303963c47f4049e0.tar.gz |
fix burgundians cap
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 } } |