From e8af8819df6c43ac0ef362c587aea234d68d385d Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Wed, 18 Apr 2018 12:31:16 +0100 Subject: [PATCH] Add PYCATCH missed when rebasing --- src/runner/proxypluginwrappers.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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