From 0c2289b6f93bf34fcc28a720587276dfbedd0e85 Mon Sep 17 00:00:00 2001 From: Silarn Date: Tue, 14 Jan 2020 20:18:31 -0600 Subject: modsSortedByProfilePriority should return the internal name of the mod --- src/organizercore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/organizercore.cpp b/src/organizercore.cpp index df505202..336be37d 100644 --- a/src/organizercore.cpp +++ b/src/organizercore.cpp @@ -940,7 +940,7 @@ QStringList OrganizerCore::modsSortedByProfilePriority() const auto modInfo = ModInfo::getByIndex(modIndex); if (!modInfo->hasFlag(ModInfo::FLAG_OVERWRITE) && !modInfo->hasFlag(ModInfo::FLAG_BACKUP)) { - res.push_back(ModInfo::getByIndex(modIndex)->name()); + res.push_back(ModInfo::getByIndex(modIndex)->internalName()); } } return res; -- cgit v1.3.1