summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--play.html2
-rw-r--r--rules.js11
2 files changed, 0 insertions, 13 deletions
diff --git a/play.html b/play.html
index 1e5d0f2..416f0da 100644
--- a/play.html
+++ b/play.html
@@ -42,8 +42,6 @@
<li><a href="info/rules.html" target="_blank">Rules</a>
<li><a href="info/history.html" target="_blank">History</a>
<li><a href="info/cards.html" target="_blank">Cards</a>
- <li class="resign separator">
- <li class="resign" onclick="confirm_resign()">Resign
</menu>
</details>
</div>
diff --git a/rules.js b/rules.js
index 6017e40..3239bb7 100644
--- a/rules.js
+++ b/rules.js
@@ -560,17 +560,6 @@ exports.action = function (state, player, action, arg) {
return game
}
-exports.resign = function (state, player) {
- game = state
- if (game.state !== "game_over") {
- if (player === SUF)
- goto_game_over(OPP, "Suffragist resigned.")
- if (player === OPP)
- goto_game_over(SUF, "Opposition resigned.")
- }
- return game
-}
-
function goto_game_over(result, victory) {
game.state = "game_over"
game.active = "None"