From 73a5f11e17507ae97f0e1686cccf49ac78a1f5db Mon Sep 17 00:00:00 2001 From: regneq Date: Wed, 30 Jul 2025 16:39:55 -0700 Subject: [PATCH] [Bug Fix] [Bug Fix] Show player count on the server list status. (#4971) --- loginserver/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loginserver/options.h b/loginserver/options.h index 31976f142..73d6f6216 100644 --- a/loginserver/options.h +++ b/loginserver/options.h @@ -31,7 +31,7 @@ public: inline void DefaultLoginServerName(const std::string &v) { m_default_loginserver_name = v; } inline std::string GetDefaultLoginServerName() const { return m_default_loginserver_name; } inline bool IsShowPlayerCountEnabled() const { return m_show_player_count; } - inline void SetShowPlayerCount(bool show_player_count) { show_player_count = show_player_count; } + inline void SetShowPlayerCount(bool show_player_count) { m_show_player_count = show_player_count; } inline bool IsWorldDevTestServersListBottom() const { return m_world_dev_list_bottom; } inline void SetWorldDevTestServersListBottom(bool list_bottom) { m_world_dev_list_bottom = list_bottom; } inline bool IsWorldSpecialCharacterStartListBottom() const { return m_special_char_list_bottom; }