@@ -89,11 +89,15 @@ namespace mo2::python {
8989 }
9090 bool lightPluginsAreSupported () override
9191 {
92- PYBIND11_OVERRIDE_PURE (bool , GamePlugins, lightPluginsAreSupported, );
92+ PYBIND11_OVERRIDE (bool , GamePlugins, lightPluginsAreSupported, );
9393 }
9494 bool mediumPluginsAreSupported () override
9595 {
96- PYBIND11_OVERRIDE_PURE (bool , GamePlugins, mediumPluginsAreSupported, );
96+ PYBIND11_OVERRIDE (bool , GamePlugins, mediumPluginsAreSupported, );
97+ }
98+ bool blueprintPluginsAreSupported () override
99+ {
100+ PYBIND11_OVERRIDE (bool , GamePlugins, blueprintPluginsAreSupported, );
97101 }
98102 };
99103
@@ -259,7 +263,9 @@ namespace mo2::python {
259263 .def (" readPluginLists" , &GamePlugins::readPluginLists, " plugin_list" _a)
260264 .def (" getLoadOrder" , &GamePlugins::getLoadOrder)
261265 .def (" lightPluginsAreSupported" , &GamePlugins::lightPluginsAreSupported)
262- .def (" mediumPluginsAreSupported" , &GamePlugins::mediumPluginsAreSupported);
266+ .def (" mediumPluginsAreSupported" , &GamePlugins::mediumPluginsAreSupported)
267+ .def (" blueprintPluginsAreSupported" ,
268+ &GamePlugins::blueprintPluginsAreSupported);
263269
264270 // LocalSavegames
265271
0 commit comments