diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-07-02 13:15:22 +0000 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:12:55 +0100 |
commit | 7d685bd85e3a7bd68081880bb144e360d58beba0 (patch) | |
tree | 8fe2e6d40f6b010bb69fb1bea27638bba9f7ceb3 /rules.js | |
parent | 4985d79dc1ece7eb4c87f1feb659f5e5f2ca5b72 (diff) | |
download | richard-iii-7d685bd85e3a7bd68081880bb144e360d58beba0.tar.gz |
Don't show 'by sea' in log.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2576,7 +2576,7 @@ states.sea_retreat_to = { area: function (to) { let sea = game.location[game.who]; game.turn_log.push([game.active, sea, to]); - game.flash = block_name(game.who) + " retreats by sea."; + game.flash = block_name(game.who) + " retreats."; log_battle(game.flash); game.location[game.who] = to; resume_battle(); |