From 13ab4a6c29e85b1a182849db306835c742e1c46e Mon Sep 17 00:00:00 2001 From: VDm Date: Tue, 18 Mar 2025 21:19:30 +0400 Subject: [PATCH] fix(client): fix reloadUI command --- src/client/Client.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/Client.cpp b/src/client/Client.cpp index 43bee8c..af6909a 100644 --- a/src/client/Client.cpp +++ b/src/client/Client.cpp @@ -46,7 +46,8 @@ static char* s_localeArray[12] = { int32_t CCommand_ReloadUI(const char*, const char*) { - // TODO: + CGlueMgr::m_reload = 1; + // CGGameUI::Reload(); return 1; }