Fix configs being applied to the wrong area (#374)

This commit is contained in:
Salanto 2024-08-25 21:21:05 +02:00 committed by GitHub
parent 8f8587ba06
commit 24baeafc9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -101,9 +101,8 @@ void Server::start()
// Assembles the area list
m_area_names = ConfigManager::sanitizedAreaNames();
QStringList raw_area_names = ConfigManager::rawAreaNames();
for (int i = 0; i < raw_area_names.length(); i++) {
QString area_name = raw_area_names[i];
for (int i = 0; i < m_area_names.length(); i++) {
QString area_name = QString::number(i) + ":" + m_area_names[i];
AreaData *l_area = new AreaData(area_name, i, music_manager);
m_areas.insert(i, l_area);
connect(l_area, &AreaData::sendAreaPacket, this, QOverload<AOPacket *, int>::of(&Server::broadcast));