From 7d685bd85e3a7bd68081880bb144e360d58beba0 Mon Sep 17 00:00:00 2001
From: Tor Andersson <tor@ccxvii.net>
Date: Fri, 2 Jul 2021 13:15:22 +0000
Subject: Don't show 'by sea' in log.

---
 rules.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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();
-- 
cgit v1.2.3