diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-12-22 17:32:02 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-27 16:15:44 +0100 |
commit | 75566438c2ba942abf3849b724e318cfa050f1ad (patch) | |
tree | 84e99d5edb1a8ff3e447a2507706a7759ad88a50 /views/join.pug | |
parent | 3e9bc21e757fc13cc8d66cea1d5dcf813f27b4f0 (diff) | |
download | server-75566438c2ba942abf3849b724e318cfa050f1ad.tar.gz |
Move more player/game info stuff into SQL.
Update invite_count with triggers.
Add games.is_ready generated column.
Add games.is_opposed generated column.
Add player_view with is_active column.
Diffstat (limited to 'views/join.pug')
-rw-r--r-- | views/join.pug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/join.pug b/views/join.pug index 2fc9287..37c245b 100644 --- a/views/join.pug +++ b/views/join.pug @@ -57,7 +57,7 @@ html if game.status > 1 p Finished #{game.mtime}. else if game.status > 0 - p Last changed #{game.mtime}. + p Last move #{game.mtime}. unless game.human_options === "None" p Options: #{game.human_options}. |