Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into dev/blueprint_support
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Oct 2, 2024
2 parents 889e9d8 + 4409375 commit 7c82617
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/mobase/wrappers/basic_classes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,9 @@ namespace mo2::python {
.def("hasLightExtension", &IPluginList::hasLightExtension, "name"_a)
.def("hasNoRecords", &IPluginList::hasNoRecords, "name"_a)

.def("author", &IPluginList::author, "name"_a)
.def("description", &IPluginList::description, "name"_a)

// Kept but deprecated for backward compatibility:
.def(
"onPluginStateChanged",
Expand Down
3 changes: 2 additions & 1 deletion src/mobase/wrappers/game_features.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,8 @@ namespace mo2::python {
.def("getLoadOrder", &GamePlugins::getLoadOrder)
.def("lightPluginsAreSupported", &GamePlugins::lightPluginsAreSupported)
.def("mediumPluginsAreSupported", &GamePlugins::mediumPluginsAreSupported)
.def("blueprintPluginsAreSupported", &GamePlugins::blueprintPluginsAreSupported);
.def("blueprintPluginsAreSupported",
&GamePlugins::blueprintPluginsAreSupported);

// LocalSavegames

Expand Down

0 comments on commit 7c82617

Please sign in to comment.