diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-12-29 21:56:25 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 13:02:38 +0100 |
commit | b5a56ff5ea536512ed9e34c3d9399327ad511698 (patch) | |
tree | 53c2b5febfdc5d0bb87b16ec33b42b27511d4153 /rules.js | |
parent | 101de3d6d0ffc666bd92ade1880405a796e8630b (diff) | |
download | nevsky-b5a56ff5ea536512ed9e34c3d9399327ad511698.tar.gz |
End taking hits when garrison routs and no lord remains.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -6169,7 +6169,11 @@ function rout_lord(lord) { } function resume_hit_lord() { - if ((game.battle.h1 === 0 && game.battle.h2 === 0) || !has_unrouted_units(game.who)) + if ( + (game.battle.h1 === 0 && game.battle.h2 === 0) || + (game.who === -1 && game.battle.garrison.knights + game.battle.garrison.men_at_arms === 0) || + !has_unrouted_units(game.who) + ) end_hit_lord() } |