Update eqemu_api_world_data_service.cpp

This commit is contained in:
Chris Miles 2025-05-21 17:03:04 -05:00
parent 074f66eb7f
commit 77cf590b55

View File

@ -24,6 +24,10 @@ void callGetZoneList(Json::Value &response)
for (auto &zone: zoneserver_list.getZoneServerList()) {
Json::Value row;
if (!zone) {
continue;
}
if (!zone->IsConnected()) {
continue;
}