diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -5768,7 +5768,10 @@ states.regroup = { ]; }, pass() { - goto_battle_lord_rout(); + if (game.battle.step < 2) + game.state = "assign_hits"; + else + goto_battle_lord_rout_2(); }, }; states.regroup_roll_protection = { @@ -5827,7 +5830,7 @@ function end_regroup() { if (game.battle.step < 2) game.state = "assign_hits"; else - goto_battle_lord_rout(); + goto_battle_lord_rout_2(); } // === 4.4.2 BATTLE ROUNDS === /* @@ -6794,6 +6797,9 @@ function goto_battle_lord_rout() { goto_regroup(); return; } + goto_battle_lord_rout_2(); +} +function goto_battle_lord_rout_2() { log_h4("Lord Rout"); // lose any unused culverins (from ravine/vanguard combo) delete game.battle.culverins; |