summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--play.html2
-rw-r--r--rules.js13
2 files changed, 0 insertions, 15 deletions
diff --git a/play.html b/play.html
index 225dded..c64f390 100644
--- a/play.html
+++ b/play.html
@@ -28,8 +28,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>
diff --git a/rules.js b/rules.js
index 1ebd165..d873d23 100644
--- a/rules.js
+++ b/rules.js
@@ -3894,19 +3894,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 make_siege_view() {
let list = {}
for (let town = first_town; town <= last_town; ++town)