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:08:56 +0100 |
commit | d8ca6742178d707526bf0d09a6298016d23d4625 (patch) | |
tree | 976c127d22bc387a7fcc26d48d396fd84a1886cc | |
parent | 31ad77310f0f0e92635d1d4ce16889b7f225ce09 (diff) | |
download | julius-caesar-d8ca6742178d707526bf0d09a6298016d23d4625.tar.gz |
Don't show 'by sea' in log.
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2066,7 +2066,7 @@ states.sea_retreat = { }, space: function (to) { let from = game.location[game.who]; - game.flash = block_name(game.who) + " retreats by sea."; + game.flash = block_name(game.who) + " retreats."; log_battle(game.flash); game.turn_log.push([game.active, from, to]); move_to(game.who, from, to); |