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:12:55 +0100
commit7d685bd85e3a7bd68081880bb144e360d58beba0 (patch)
tree8fe2e6d40f6b010bb69fb1bea27638bba9f7ceb3
parent4985d79dc1ece7eb4c87f1feb659f5e5f2ca5b72 (diff)
downloadrichard-iii-7d685bd85e3a7bd68081880bb144e360d58beba0.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 fdf7922..afb8ef4 100644
--- a/rules.js
+++ b/rules.js
@@ -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();