From d7ae1e694112d6a4bfc9d528aa738fb04946a0b3 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 15 Sep 2023 20:50:51 +0200 Subject: Enforce limits on how many games you can create and join. Also limit joining more games if you have too many games waiting. Generous default limits: 7 open, 29 active, and 3 waiting. --- views/join.pug | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'views/join.pug') diff --git a/views/join.pug b/views/join.pug index ced1fe3..3110bd3 100644 --- a/views/join.pug +++ b/views/join.pug @@ -27,6 +27,7 @@ html let whitelist = !{ JSON.stringify(whitelist) } let blacklist = !{ JSON.stringify(blacklist) } let friends = !{ JSON.stringify(friends) } + let limit = !{ !!limit } let ready = !{ ready } script(src="/join.js") body @@ -36,6 +37,9 @@ html h1 #{game.title_name} else h1 #{game.title_name} - #{game.scenario} + + if limit + p.error= limit p.error#error div.logo -- cgit v1.2.3