diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-12-22 00:23:43 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-23 02:10:40 +0100 |
commit | 6aa382f07a75872db327f5f1ed1c012da0d3d5e3 (patch) | |
tree | 16a63bf27685fbdd9957e3bd28028966b5836899 /schema.sql | |
parent | 924101c4c0ed18f5bae2ee83de368a4f1f0bee51 (diff) | |
download | server-6aa382f07a75872db327f5f1ed1c012da0d3d5e3.tar.gz |
Send system chat messages when players join and part active games.
Diffstat (limited to 'schema.sql')
-rw-r--r-- | schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -405,7 +405,7 @@ create view game_chat_view as game_id, chat_id, time, name, message from game_chat - join users using(user_id) + left join users using(user_id) ; create table if not exists game_replay ( |