summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/rules.js b/rules.js
index 541ff6f..512e84c 100644
--- a/rules.js
+++ b/rules.js
@@ -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 ===