diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-04-11 23:18:51 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-04-11 23:18:51 +0200 |
commit | 53be40dc7297b9aa2f22407c958a4b52936c6603 (patch) | |
tree | 6bd2f5cebab8a692729c1868a83593afe479a87d | |
parent | ce6e70c92d4745b79b16d8c9fef96be770cf3958 (diff) | |
download | wilderness-war-53be40dc7297b9aa2f22407c958a4b52936c6603.tar.gz |
-rw-r--r-- | rules.js | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6643,7 +6643,7 @@ states.go_home_with_indians = { } if (game.count === 0) - view.actions.end_go_home = 1 + view.actions.pass = 1 }, piece(p) { push_undo() @@ -6660,6 +6660,9 @@ states.go_home_with_indians = { end_go_home_to() }, end_go_home() { + this.pass() + }, + pass() { push_undo() end_go_home_to() }, |