diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-05-24 00:42:11 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-24 00:42:11 +0200 |
commit | c46094fa3d4a8979e0385c66ba7f093b5f7e0176 (patch) | |
tree | 2f937a42ec39116e973708f3536e059584be16de | |
parent | 741f3169db8bac0924e59c87f3fba20a324459e4 (diff) | |
download | hammer-of-the-scots-c46094fa3d4a8979e0385c66ba7f093b5f7e0176.tar.gz |
Don't undo after selecting a card.
-rw-r--r-- | rules.js | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -920,7 +920,6 @@ states.play_card = { if (current === ENGLAND) { if (game.e_card) { view.prompt = "Waiting for Scotland to play a card." - gen_action(view, 'undo') } else { view.prompt = "Play a card." for (let c of game.e_hand) @@ -930,7 +929,6 @@ states.play_card = { if (current === SCOTLAND) { if (game.s_card) { view.prompt = "Waiting for England to play a card." - gen_action(view, 'undo') } else { view.prompt = "Play a card." for (let c of game.s_hand) |