diff --git a/src/runner/proxypluginwrappers.cpp b/src/runner/proxypluginwrappers.cpp index 63748dc..4e4853a 100644 --- a/src/runner/proxypluginwrappers.cpp +++ b/src/runner/proxypluginwrappers.cpp @@ -252,7 +252,9 @@ IPluginGame::LoadOrderMechanism IPluginGameWrapper::loadOrderMechanism() const IPluginGame::SortMechanism IPluginGameWrapper::sortMechanism() const { - return this->get_override("sortMechanism")(); + try { + return this->get_override("sortMechanism")(); + } PYCATCH; } int IPluginGameWrapper::nexusModOrganizerID() const