diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2024-10-03 02:46:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-03 09:46:53 +0200 |
| commit | 19fae10b2bd20b8f5bdf1012f674b60bb9bd43fa (patch) | |
| tree | fc7671ed24ce6cdec0157376c729e1bc474bd0c9 /src/pluginlistproxy.cpp | |
| parent | 7ed06a77c1119b6ee7cd6d32893339465197f420 (diff) | |
Starfield Updates: Shattered Space & Blueprint Support (#2131)
---------
Co-authored-by: Jonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com>
Diffstat (limited to 'src/pluginlistproxy.cpp')
| -rw-r--r-- | src/pluginlistproxy.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pluginlistproxy.cpp b/src/pluginlistproxy.cpp index 034a1429..2c654464 100644 --- a/src/pluginlistproxy.cpp +++ b/src/pluginlistproxy.cpp @@ -124,6 +124,11 @@ bool PluginListProxy::isLightFlagged(const QString& name) const return m_Proxied->isLightFlagged(name); } +bool PluginListProxy::isBlueprintFlagged(const QString& name) const +{ + return m_Proxied->isBlueprintFlagged(name); +} + bool PluginListProxy::hasNoRecords(const QString& name) const { return m_Proxied->hasNoRecords(name); |
