summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 47472bb..4e2c604 100644
--- a/rules.js
+++ b/rules.js
@@ -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()
},