From e905ebfbe3bffc8a4f0c04ca02564bf84491d5ff Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 15 Mar 2023 13:46:46 +0100 Subject: King should go to draw pool if eliminated in non-battle situations. --- rules.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rules.js b/rules.js index 95ab6a0..165c48a 100644 --- a/rules.js +++ b/rules.js @@ -637,10 +637,12 @@ function eliminate_block(who, reason) { disband(who) } } else if (who === B_KING) { - game.location[who] = NOWHERE if (reason === 'combat' || reason === 'retreat') { + game.location[who] = NOWHERE game.victory = "England won because the Scottish king has died in battle!" game.result = ENGLAND + } else { + disband(who) } } else if (block_is_mortal(who) && (reason === 'combat' || reason === 'retreat')) { game.location[who] = NOWHERE -- cgit v1.2.3