summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--play.html2
-rw-r--r--rules.js12
2 files changed, 0 insertions, 14 deletions
diff --git a/play.html b/play.html
index e5e3d1c..0ce6ea1 100644
--- a/play.html
+++ b/play.html
@@ -22,8 +22,6 @@
<menu>
<li><a href="info/rules.html" target="_blank">Rules</a>
<li><a href="info/charts.html" target="_blank">Charts</a>
- <li class="resign separator">
- <li class="resign" onclick="confirm_resign()">Resign
</menu>
</details>
<button onclick="toggle_pieces()"><img src="/images/earth-africa-europe.svg"></button>
diff --git a/rules.js b/rules.js
index 15c9f30..51c71e4 100644
--- a/rules.js
+++ b/rules.js
@@ -2839,18 +2839,6 @@ exports.action = function (state, player, action, arg) {
return game
}
-exports.resign = function (state, player) {
- zoc_valid = false
- game = state
- if (game.state !== 'game_over') {
- if (player === P1)
- goto_game_over(P2, P1 + " resigned.")
- if (player === P2)
- goto_game_over(P1, P2 + " resigned.")
- }
- return game
-}
-
function goto_game_over(result, victory) {
game.state = "game_over"
game.active = "None"