summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-07-02 13:15:22 +0000
committerTor Andersson <tor@ccxvii.net>2022-11-16 19:08:56 +0100
commitd8ca6742178d707526bf0d09a6298016d23d4625 (patch)
tree976c127d22bc387a7fcc26d48d396fd84a1886cc
parent31ad77310f0f0e92635d1d4ce16889b7f225ce09 (diff)
downloadjulius-caesar-d8ca6742178d707526bf0d09a6298016d23d4625.tar.gz
Don't show 'by sea' in log.
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 7caad70..41a9130 100644
--- a/rules.js
+++ b/rules.js
@@ -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);