diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-01-27 15:48:29 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-01-27 15:52:52 +0100 |
commit | bb8e8e716e9045a3a134161f2cad33a019b9d98b (patch) | |
tree | c58cd1d15cb2fcae590045a503c3a7953cf1b786 | |
parent | 908151b9be0a53fbbf4011aa193e52f717f065d4 (diff) | |
download | plantagenet-bb8e8e716e9045a3a134161f2cad33a019b9d98b.tar.gz |
Fix sail.locale -- resume_command should go with else branch
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7416,9 +7416,10 @@ states.sail = { // you can go to unbesieged enemy lord with norfolk capability if (has_unbesieged_enemy_lord(to)) goto_confirm_approach_sail() - else + else { game.flags.surprise_landing = 1 resume_command() + } }, } |