diff options
author | teisuru <31881306+teisuru@users.noreply.github.com> | 2024-02-13 14:43:12 +0100 |
---|---|---|
committer | teisuru <31881306+teisuru@users.noreply.github.com> | 2024-02-13 14:43:12 +0100 |
commit | 7a14caaea5c8f48f01ee87548966283f4e5b8556 (patch) | |
tree | b6af8dc1a245c3c479020dac0131c2c5a3025a9c | |
parent | d30bf33361648c024f3b05890a371896cc839f27 (diff) | |
download | plantagenet-7a14caaea5c8f48f01ee87548966283f4e5b8556.tar.gz |
fix L17 when not able to parley
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4559,7 +4559,7 @@ function goto_levy_muster() { // additionnal free specific actions if (lord_has_capability(lord, AOW_LANCASTER_THOMAS_STANLEY)) game.flags.free_levy = 1 - if (is_event_in_play(EVENT_LANCASTER_MY_CROWN_IS_IN_MY_HEART)) + if (is_event_in_play(EVENT_LANCASTER_MY_CROWN_IS_IN_MY_HEART) && can_action_parley_levy()) game.flags.free_parley_henry = 2 if (is_event_in_play(EVENT_YORK_GLOUCESTER_AS_HEIR)) game.flags.free_parley_gloucester = 3 |