From 78f831bfe00569981739c51a34a96e9b0237456f Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 16 May 2021 12:48:27 +0200 Subject: hammer: Allow Wallace to go to Selkirk if in England during winter. Disband Scottish blocks in England during the castle limit step. --- rules.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index 21f6c57..d8513be 100644 --- a/rules.js +++ b/rules.js @@ -2370,8 +2370,9 @@ function goto_english_disbanding() { for (let b in BLOCKS) { let where = game.location[b]; - // All blocks in England must disband. - if (where == ENGLAND) { + // All (English) blocks in England must disband. + // Scottish blocks disband later during the castle limit check. + if (where == ENGLAND && block_owner(b) == ENGLAND) { game.turn_log.push([ENGLAND]); disband(b); } -- cgit v1.2.3