From 741af37a4fe17d0340b221b2cb64e4c68e12464c Mon Sep 17 00:00:00 2001 From: mrb0nk500 Date: Wed, 15 Mar 2023 11:47:18 -0300 Subject: TProtocol: Rename `maybe_release_flag` -> `enable_v2_features` --- src/pso/TProtocol.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/pso/TProtocol.cpp b/src/pso/TProtocol.cpp index 895a09a..58eaa56 100644 --- a/src/pso/TProtocol.cpp +++ b/src/pso/TProtocol.cpp @@ -14,8 +14,7 @@ OBJECT_NAME(TProtocol); packet *server_packet = nullptr; -// Seems like this is 1 if it's the full release, and 0 if it's the trial edition. -int maybe_release_flag = 1; +int enable_v2_features = 1; u32 new_ip_addr; u16 new_port; TPlyMeetUserExtension meet_user_settings; @@ -77,7 +76,7 @@ void TProtocol::recv_room_info(packet &pkt) { m_lobby_list_count = tmp.header.flags; - if (maybe_release_flag) { + if (enable_v2_features) { for (int i = 0; i < m_lobby_list_count; ++i) { m_lobby_entries[i] = tmp.entries[i]; } -- cgit v1.2.3-13-gbd6f