summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index b143c23..d44bf53 100644
--- a/rules.js
+++ b/rules.js
@@ -4153,7 +4153,7 @@ function can_play_rebel_supply_depot() {
function can_play_surprise_landing() {
let here = get_lord_locale(game.command)
- if (game.flags.surprise_landing === 0 || !is_seaport(here) || here === LOC_CALAIS)
+ if (game.flags.surprise_landing === 0 || !is_seaport(here) || here === LOC_CALAIS || is_sea(here))
return false
return true
}