diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-09-22 20:02:45 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-09-22 20:02:45 +0200 |
commit | b808c54912ff02d42d175e9d84ae707d44540702 (patch) | |
tree | d466e7aa7cdc71e4b08a03ee719a2261f92240ac /rules.js | |
parent | 4ef66c250e127f9184df41b6df18df9d30220ba0 (diff) | |
download | hammer-of-the-scots-b808c54912ff02d42d175e9d84ae707d44540702.tar.gz |
Treat eliminated in combat and unable to retreat the same.
Per Grant's latest ruling.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -634,10 +634,8 @@ function eliminate_block(who, reason) { disband(who) } else { game.location[who] = NOWHERE - if (reason === 'combat') { - game.victory = "Scotland won because king Edward II has died in battle!" - game.result = SCOTLAND - } + game.victory = "Scotland won because king Edward II has died in battle!" + game.result = SCOTLAND } } else { disband(who) |