From 0cd62c5af96dc8752a237d25c609c406d40b1d6c Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 17 Jul 2021 22:16:21 +0200 Subject: richard: Fix sea moving to exile areas. --- rules.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rules.js b/rules.js index 920da3b..10039db 100644 --- a/rules.js +++ b/rules.js @@ -1850,6 +1850,8 @@ states.sea_move_to = { for (let to of AREAS[game.location[game.who]].exits) { if (to === game.last_from) continue; + if (is_enemy_exile_area(to)) + continue; if (is_friendly_or_vacant_area(to)) { if (game.moves === 0) { if (game.move_port[game.origin] === to) -- cgit v1.2.3