diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-05-16 12:48:27 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-17 12:53:17 +0100 |
commit | 78f831bfe00569981739c51a34a96e9b0237456f (patch) | |
tree | 77045027bbc157210cf7cebe590301fd946e1f3e | |
parent | 26a9295546ce08130f3688e5725b357c2a812a2d (diff) | |
download | hammer-of-the-scots-78f831bfe00569981739c51a34a96e9b0237456f.tar.gz |
hammer: Allow Wallace to go to Selkirk if in England during winter.
Disband Scottish blocks in England during the castle limit step.
-rw-r--r-- | rules.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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); } |