summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-05-02 00:24:56 +0200
committerTor Andersson <tor@ccxvii.net>2022-11-17 12:53:17 +0100
commit76e062b19295ed47b643a7547282ef87f20cfa1a (patch)
tree699d962bcade6ffa873a2632f34409b6b5ff67ca
parent0363bf3ea52abc01481e9852631d9d1e9ace46e4 (diff)
downloadhammer-of-the-scots-76e062b19295ed47b643a7547282ef87f20cfa1a.tar.gz
hammer: Kill Scottish King that cannot retreat.
-rw-r--r--rules.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index bfec678..dd894de 100644
--- a/rules.js
+++ b/rules.js
@@ -535,7 +535,7 @@ function eliminate_block(who, reason) {
}
} else if (who == KING) {
game.location[who] = null;
- if (reason == 'combat') {
+ if (reason == 'combat' || reason == 'retreat') {
game.victory = "England wins because the Scottish king has died in battle!";
game.result = ENGLAND
}