diff options
-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() }, |