Make modlist [] by default instead of null

This commit is contained in:
Tixx 2024-10-09 19:42:47 +02:00
parent cf3985ce00
commit 2bf9e7d916

View File

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