diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-10-09 23:02:22 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | ea2b196f5d1253f3a5c2dda9dbddaf4d03d2c5ef (patch) | |
tree | 7e95716d72cb0669adeae92fb83c199f74d6b5ce /rules.js | |
parent | 4092bbe6ed55bd05c311eb33d07384594461793a (diff) | |
download | plantagenet-ea2b196f5d1253f3a5c2dda9dbddaf4d03d2c5ef.tar.gz |
fix wrong function name
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5536,7 +5536,7 @@ function continue_engagement() { for (let pos of battle_strike_positions) { let lord = game.battle.array[pos] if (lord !== NOBODY) - if (will_rout_lord(lord)) + if (will_lord_rout(lord)) rout_lord(lord) } |