Fix catching polymorphic type by value error

fixes #3579
This commit is contained in:
Christopher Hasse 2021-02-06 18:55:44 -06:00
parent 75c14990e5
commit 047546c59e

View File

@ -471,7 +471,7 @@ void World::loadFromLevelDat(QByteArray data)
auto &WorldGen_val = val.at("WorldGenSettings");
randomSeed = read_long(WorldGen_val, "seed");
}
catch (std::out_of_range) {}
catch (const std::out_of_range &) {}
if(!randomSeed) {
randomSeed = read_long(val, "RandomSeed");
}