protocol changes for drafting

This commit is contained in:
ebbit1q 2025-09-02 13:52:30 +02:00
parent 5381562a5e
commit c4026cd1ec
17 changed files with 212 additions and 2 deletions

View file

@ -48,6 +48,9 @@ message ServerInfo_Game {
// decklists are sent to all players when loaded
optional bool share_decklists_on_load = 15;
// the game is a draft game
optional bool is_draft = 16;
// the current player count
optional uint32 player_count = 30;
@ -60,6 +63,6 @@ message ServerInfo_Game {
// time that the game started at
optional uint32 start_time = 51;
// whether the game is closed. Closed games are finished and can't be interacted with
// Whether the game is closed. Closed games are finished and can't be interacted with
optional bool closed = 52;
}