diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-12-24 00:38:46 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-24 00:38:46 +0100 |
commit | 0b979b1575eab57bfe5f26b1dd34e48004221f58 (patch) | |
tree | c5811215d0e762a93344b2677d803d4a9c5e3a3a | |
parent | f1c11210baff104de96b106134ce400ff82a6e65 (diff) | |
download | hammer-of-the-scots-0b979b1575eab57bfe5f26b1dd34e48004221f58.tar.gz |
Automatic resign menu.
-rw-r--r-- | play.html | 2 | ||||
-rw-r--r-- | rules.js | 13 |
2 files changed, 0 insertions, 15 deletions
@@ -46,8 +46,6 @@ <li><a href="info/rules.html" target="_blank">Rules</a> <li><a href="info/cards.html" target="_blank">Cards</a> <li><a href="info/blocks.html" target="_blank">Blocks</a> - <li class="resign separator"> - <li class="resign" onclick="confirm_resign()">Resign </menu> </details> <button onclick="toggle_blocks()"><img src="/images/earth-africa-europe.svg"></button> @@ -3160,19 +3160,6 @@ exports.action = function (state, current, action, arg) { return game } -exports.resign = function (state, current) { - game = state - if (game.state !== 'game_over') { - log("") - log(current + " resigned.") - game.active = "None" - game.state = 'game_over' - game.victory = current + " resigned." - game.result = ENEMY[current] - } - return game -} - function observer_hand() { let hand = [] hand.length = Math.max(game.e_hand.length, game.s_hand.length) |