From 5cf2a7f6e271d403e1e47b2a57bb97a56a9cb838 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Wed, 8 Oct 2025 22:38:01 -0500 Subject: [PATCH] feat(ui): implement Script_RequestRealmList --- src/ui/ScriptFunctionsRealmList.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ui/ScriptFunctionsRealmList.cpp b/src/ui/ScriptFunctionsRealmList.cpp index bdaf2bc..3c7f9e0 100644 --- a/src/ui/ScriptFunctionsRealmList.cpp +++ b/src/ui/ScriptFunctionsRealmList.cpp @@ -11,7 +11,10 @@ #include int32_t Script_RequestRealmList(lua_State* L) { - WHOA_UNIMPLEMENTED(0); + auto showProgressDialog = StringToBOOL(L, 1, 0); + CGlueMgr::GetRealmList(showProgressDialog); + + return 0; } int32_t Script_RealmListUpdateRate(lua_State* L) {