implement overflow lobbies

This commit is contained in:
Martin Michelsen
2023-10-07 21:09:55 -07:00
parent c2b2239df0
commit 6bebcc841e
5 changed files with 21 additions and 6 deletions
+1
View File
@@ -45,6 +45,7 @@ struct Lobby : public std::enable_shared_from_this<Lobby> {
PUBLIC = 0x01000000,
DEFAULT = 0x02000000,
V2_AND_LATER = 0x04000000, // Lobby does not appear on v1
IS_OVERFLOW = 0x08000000,
};
std::weak_ptr<ServerState> server_state;