Skip to content

Commit

Permalink
Make LOOT support default (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn authored Jul 11, 2024
1 parent 4caa1ce commit 23f4b56
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/gamestarfield.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,6 @@ QList<PluginSetting> GameStarfield::settings() const
<< PluginSetting("enable_management_warnings",
tr("Show a warning when plugins.txt management is invalid."),
true)
<< PluginSetting("enable_loot_sorting",
tr("As of this release LOOT Starfield support is minimal to "
"nonexistant. Toggle this to enable it anyway."),
false)
<< PluginSetting("enable_loadorder_fix",
tr("Utilize Starfield.ccc to affix core plugin load order "
"(will override existing file)."),
Expand Down Expand Up @@ -357,10 +353,7 @@ QStringList GameStarfield::CCPlugins() const

IPluginGame::SortMechanism GameStarfield::sortMechanism() const
{
if (!testFilePresent() &&
m_Organizer->pluginSetting(name(), "enable_loot_sorting").toBool())
return IPluginGame::SortMechanism::LOOT;
return IPluginGame::SortMechanism::NONE;
return IPluginGame::SortMechanism::LOOT;
}

IPluginGame::LoadOrderMechanism GameStarfield::loadOrderMechanism() const
Expand Down

0 comments on commit 23f4b56

Please sign in to comment.