diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-07-09 00:45:40 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-07-09 00:45:40 +0200 |
commit | f1aebd2428f22a26246c053bfffa19e08d30840e (patch) | |
tree | 6585384612c178f0f97caea574026e018a0e9618 /rules.js | |
parent | a9ad49b147faa4bfaf43ab4b4ad5a66541a1ad0a (diff) | |
download | time-of-crisis-f1aebd2428f22a26246c053bfffa19e08d30840e.tar.gz |
Fix skipping end of turn at end of game.
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4790,7 +4790,7 @@ function goto_buy_trash_discard() { if (game.end) { // Skip rest of turn... for (let c of game.played) - set_add(discard, c) + set_add(current_discard(), c) game.played.length = 0 goto_end_of_turn() } else if (current_hand().length > 0) { |