diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index 52fe857..b7671e0 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -855,7 +855,7 @@ BOOST_PYTHON_MODULE(mobase) .def("gameVariants", bpy::pure_virtual(&MOBase::IPluginGame::gameVariants)) .def("setGameVariant", bpy::pure_virtual(&MOBase::IPluginGame::setGameVariant)) .def("getBinaryName", bpy::pure_virtual(&MOBase::IPluginGame::getBinaryName)) - .def("getNexusName", bpy::pure_virtual(&MOBase::IPluginGame::getNexusName)) + .def("getGameShortName", bpy::pure_virtual(&MOBase::IPluginGame::getGameShortName)) .def("getIniFiles", bpy::pure_virtual(&MOBase::IPluginGame::getIniFiles)) .def("getDLCPlugins", bpy::pure_virtual(&MOBase::IPluginGame::getDLCPlugins)) .def("getLoadOrderMechanism", bpy::pure_virtual(&MOBase::IPluginGame::getLoadOrderMechanism)) diff --git a/src/runner/uibasewrappers.h b/src/runner/uibasewrappers.h index 611e01b..4a7672c 100644 --- a/src/runner/uibasewrappers.h +++ b/src/runner/uibasewrappers.h @@ -317,7 +317,7 @@ struct IPluginGameWrapper: MOBase::IPluginGame, boost::python::wrapperget_override("gameVariants")(); } virtual void setGameVariant(const QString &variant) override { this->get_override("setGameVariant")(variant); } virtual QString getBinaryName() const override { return this->get_override("getBinaryName")(); } - virtual QString getNexusName() const override { return this->get_override("getNexusName")(); } + virtual QString getGameShortName() const override { return this->get_override("getGameShortName")(); } virtual QStringList getIniFiles() const override { return this->get_override("getIniFiles")(); } virtual QStringList getDLCPlugins() const override { return this->get_override("getDLCPlugins")(); } virtual LoadOrderMechanism getLoadOrderMechanism() const override { return this->get_override("getLoadorderMechanism")(); }