diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-04-26 13:41:36 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-04-26 13:55:20 +0200 |
commit | 44c38cb0f1a52787306ffca3ee4916f382bf7cc4 (patch) | |
tree | 6df69ff0d790c23e3a3b124a8af555f7a81cddb0 | |
parent | 3fa81c0bf6af7dce7769cb23d59c06bddbdbff7e (diff) | |
download | server-44c38cb0f1a52787306ffca3ee4916f382bf7cc4.tar.gz |
Fix broken links. Add explanation of tournament ban length.
-rw-r--r-- | .gitignore | 13 | ||||
-rw-r--r-- | docs/tournaments.md | 4 | ||||
-rw-r--r-- | views/tm_list.pug | 2 | ||||
-rw-r--r-- | views/tm_seed.pug | 2 |
4 files changed, 11 insertions, 10 deletions
@@ -1,21 +1,18 @@ -# Source assets and working files -WIP* -HIRES -vassal -tmp -*.ppm - # Live database files .env db db-shm db-wal +archive.db +archive.db-shm +archive.db-wal # Development clutter node_modules package-lock.json tags +cookies.txt -# Fuzzer work files +# Fuzzer output coverage fuzzer diff --git a/docs/tournaments.md b/docs/tournaments.md index 0db6df5..e042156 100644 --- a/docs/tournaments.md +++ b/docs/tournaments.md @@ -14,6 +14,10 @@ All tournament games use time control. If you let a tournament game time out, you will not be allowed to join future tournaments! +The ban on joining tourmanents is proportional to the number of games you time out. +If you play actively and prove that you can finish more games than you've timed out +you will be allowed to join tournaments again. + ### Rounds Tournaments are round-robin, where each player meets every other player. diff --git a/views/tm_list.pug b/views/tm_list.pug index f5efa26..7c25d69 100644 --- a/views/tm_list.pug +++ b/views/tm_list.pug @@ -9,6 +9,6 @@ html article h1 Tournaments - p See <a href="/docs/tournaments.html">tournament information</a>. + p See <a href="/docs/tournaments">tournament information</a>. +seedlist(seeds, "Mini Cup") diff --git a/views/tm_seed.pug b/views/tm_seed.pug index ea31a41..65c213d 100644 --- a/views/tm_seed.pug +++ b/views/tm_seed.pug @@ -25,7 +25,7 @@ html tr td Format td - a(href="/docs/tournaments.html") Mini Cup + a(href="/docs/tournaments") Mini Cup if seed.scenario !== "Standard" tr td Scenario |