Skip to content

Commit

Permalink
Do not enable the blueprint flag for non-master plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Oct 2, 2024
1 parent c56ade6 commit 2d6d06c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pluginlist.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1931,7 +1931,7 @@ PluginList::ESPInfo::ESPInfo(const QString& name, bool forceLoaded, bool forceEn
isMasterFlagged = file.isMaster();
isLightFlagged = lightSupported && file.isLight(mediumSupported);
isMediumFlagged = mediumSupported && file.isMedium();
isBlueprintFlagged = blueprintSupported && file.isBlueprint();
isBlueprintFlagged = blueprintSupported && isMasterFlagged && file.isBlueprint();
hasNoRecords = file.isDummy();

author = QString::fromLatin1(file.author().c_str());
Expand Down

0 comments on commit 2d6d06c

Please sign in to comment.