Make modlist an empty array by default instead of null (#377)

Related launcher PR: https://github.com/BeamMP/BeamMP-Launcher/pull/136
This commit is contained in:
Lion
2024-10-12 21:06:41 +02:00
committed by GitHub

View File

@@ -43,5 +43,5 @@ private:
int mModsLoaded = 0;
std::mutex mModsMutex;
nlohmann::json mMods;
nlohmann::json mMods = nlohmann::json::array();
};