diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-02-22 12:54:58 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-02-23 12:56:27 +0100 |
commit | 20e858c53f8ccf939df717386a5e69fca55a6b78 (patch) | |
tree | 0513a27f782df137eec8a8b13b6583b25cd12ee2 | |
parent | c4138d200fc685ac7ed38c534dc03b188aab69c6 (diff) | |
download | server-20e858c53f8ccf939df717386a5e69fca55a6b78.tar.gz |
Tweak winner logic to scale threshold by player count.
-rw-r--r-- | schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -882,7 +882,7 @@ begin with tt as ( select - round_count as threshold + (2 * round_count) / player_count as threshold from tm_seeds where |