1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00

Set resetconfig to 0

This commit is contained in:
Joshua Goins 2023-12-23 10:29:12 -05:00
parent b747f99131
commit c6899c42fe

View file

@ -136,6 +136,7 @@ QString GameRunner::getGameArgs(const Profile &profile, const LoginAuth &auth)
gameArgs.push_back({QStringLiteral("language"), QString::number(profile.account()->language())});
gameArgs.push_back({QStringLiteral("ver"), profile.baseGameVersion()});
gameArgs.push_back({QStringLiteral("UserPath"), Utility::toWindowsPath(profile.account()->getConfigDir().absolutePath())});
gameArgs.push_back({QStringLiteral("resetconfig"), QStringLiteral("0")});
// FIXME: this should belong somewhere else...
Utility::createPathIfNeeded(profile.account()->getConfigDir().absolutePath());