diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-02-10 15:58:08 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-02-10 15:58:08 +0100 |
commit | 2ee23f0e34e41c87bce545712008ed196bc3efb4 (patch) | |
tree | 0fb9f7fce6a6d82bac9507cb3e7a6068e86c4619 | |
parent | 0156d64ee161a6919ee5dd7c112524a5bcacd015 (diff) | |
download | plantagenet-2ee23f0e34e41c87bce545712008ed196bc3efb4.tar.gz |
Rename march_with_group_3 to end_march.
-rw-r--r-- | rules.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -6312,7 +6312,7 @@ function march_with_group_2() { goto_intercept() } -function march_with_group_3() { +function end_march() { // Disbanded in battle! if (!is_lord_on_map(game.command)) { game.march = 0 @@ -6483,7 +6483,7 @@ function goto_exiles() { game.state = "exiles" set_active_enemy() } else { - march_with_group_3() + end_march() } } @@ -6497,7 +6497,7 @@ function end_exiles() { } else { // no one left, goto finish marching. set_active_enemy() - march_with_group_3() + end_march() } } @@ -9691,7 +9691,7 @@ function goto_battle_aftermath() { game.battle = 0 game.flags.bloody = 0 - march_with_group_3() + end_march() } // === CAMPAIGN: FEED === |