From 8a71e9fdea643009b071cebcd776e6c0b4e39a56 Mon Sep 17 00:00:00 2001 From: VDm Date: Sat, 29 Mar 2025 23:53:56 +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 f326581..b9caffe 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; }