Updating per review

This commit is contained in:
Chase Cooper 2026-03-04 00:49:37 -05:00
parent fdcf4622c9
commit 7bf328d58c

View file

@ -41,10 +41,8 @@ vector<shared_ptr<LevelSummary>> McRegionLevelStorageSource::getLevelList()
if (subFolders)
{
const auto itEnd = subFolders->end();
for (auto it = subFolders->begin(); it != itEnd; ++it)
for (const File* file : *subFolders)
{
const File* file = *it;
if (file->isDirectory())
continue;
@ -73,7 +71,7 @@ vector<shared_ptr<LevelSummary>> McRegionLevelStorageSource::getLevelList()
gameType,
requiresConversion,
levelData->isHardcore(),
false));
false));
}
}
}