mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 12:25:59 +03:00
fix(glue): use correct comparison in GetRealmInfo script handler
This commit is contained in:
parent
6811eb49d6
commit
a3b285497a
@ -68,7 +68,7 @@ int32_t Script_GetRealmInfo(lua_State* L) {
|
|||||||
: nullptr;
|
: nullptr;
|
||||||
int32_t realmIndex = lua_tonumber(L, 2) - 1;
|
int32_t realmIndex = lua_tonumber(L, 2) - 1;
|
||||||
|
|
||||||
if (realmCategory && realmIndex > realmCategory->uint14) {
|
if (realmCategory && realmIndex < realmCategory->uint14) {
|
||||||
realmInfo = ClientServices::GetRealmInfoByIndex(realmCategory->m_realms[realmIndex]);
|
realmInfo = ClientServices::GetRealmInfoByIndex(realmCategory->m_realms[realmIndex]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user