mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Fixed endless sorting loop.
That occurred if a user had disabled metadata.
This commit is contained in:
@@ -632,7 +632,7 @@ namespace loot {
|
||||
}
|
||||
|
||||
bool Plugin::HasNameOnly() const {
|
||||
return !IsPriorityExplicit() && enabled == true && loadAfter.empty() && requirements.empty() && incompatibilities.empty() && messages.empty() && tags.empty() && _dirtyInfo.empty();
|
||||
return !IsPriorityExplicit() && loadAfter.empty() && requirements.empty() && incompatibilities.empty() && messages.empty() && tags.empty() && _dirtyInfo.empty();
|
||||
}
|
||||
|
||||
bool Plugin::IsRegexPlugin() const {
|
||||
|
||||
Reference in New Issue
Block a user