diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-05-02 00:24:56 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-17 12:53:17 +0100 |
commit | 76e062b19295ed47b643a7547282ef87f20cfa1a (patch) | |
tree | 699d962bcade6ffa873a2632f34409b6b5ff67ca | |
parent | 0363bf3ea52abc01481e9852631d9d1e9ace46e4 (diff) | |
download | hammer-of-the-scots-76e062b19295ed47b643a7547282ef87f20cfa1a.tar.gz |
hammer: Kill Scottish King that cannot retreat.
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |