aboutsummaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
Diffstat (limited to 'libs')
-rw-r--r--libs/plugin_python/src/proxy/proxypython.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/libs/plugin_python/src/proxy/proxypython.cpp b/libs/plugin_python/src/proxy/proxypython.cpp
index c9c7ba2..6a1430d 100644
--- a/libs/plugin_python/src/proxy/proxypython.cpp
+++ b/libs/plugin_python/src/proxy/proxypython.cpp
@@ -284,12 +284,18 @@ QStringList ProxyPython::pluginList(const QDir& pluginPath) const
// loaded as MO2 plugins.
if (baseName == "winreg.py" || baseName == "lzokay.py" ||
baseName == "FNISPatches.py" || baseName == "FNISTool.py" ||
- baseName == "FNISToolReset.py") {
+ baseName == "FNISToolReset.py" ||
+ baseName == "FixGameRegKey.py" ||
+ baseName == "rootbuilder.py") {
continue;
}
result.append(name);
}
else if (info.isDir() && QDir(info.absoluteFilePath()).exists("__init__.py")) {
+ // Skip Windows-only directory plugins that use ctypes.windll etc.
+ if (baseName == "crashlogtools") {
+ continue;
+ }
result.append(name);
}
}