diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2024-02-15 10:59:54 +0100 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2024-02-15 11:00:24 +0100 |
commit | 3871a40ba2a0faddeabba0781561ed0fa957d632 (patch) | |
tree | ec6798f1f0caed0860fbedf59f2ed0c50fb363f5 /rules.js | |
parent | 60fc53140c5a7eb96f4d585c93b94c756d6c7476 (diff) | |
download | plantagenet-3871a40ba2a0faddeabba0781561ed0fa957d632.tar.gz |
only check for lords without troops or retinue during feed
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11903,7 +11903,7 @@ exports.assert_state = function (state) { load_state(state) // assert_mutually_exclusive_lords() - if (game.state !== "battle_losses" && game.state !== "death_or_disband") + if (game.state === "feed") assert_all_lords_have_troops_or_retinue() if (is_levy_phase()) { |