Remove obsolete check

This commit is contained in:
Oliver Hamlet
2024-08-22 08:32:30 +01:00
parent 59a3b7ce40
commit 63b1e0bacc
+1 -4
View File
@@ -79,10 +79,7 @@ PluginSortingData::PluginSortingData(
std::string PluginSortingData::GetName() const { return plugin_->GetName(); }
bool PluginSortingData::IsMaster() const {
return plugin_ != nullptr &&
(plugin_->IsMaster() ||
(plugin_->IsLightPlugin() &&
!boost::iends_with(plugin_->GetName(), ".esp")));
return plugin_ != nullptr && plugin_->IsMaster();
}
bool PluginSortingData::LoadsArchive() const {