From d549a99867cc80095f18cf5b7aa1385964a51493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Tue, 22 Sep 2020 21:13:23 +0200 Subject: [PATCH] Change modId() to nexusId(). --- src/runner/pythonrunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index b40e4b5..9a73443 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -559,7 +559,7 @@ BOOST_PYTHON_MODULE(mobase) .def("notes", &IModInterface::notes) .def("gameName", &IModInterface::gameName) .def("repository", &IModInterface::repository) - .def("modId", &IModInterface::modId) + .def("nexusId", &IModInterface::nexusId) .def("version", &IModInterface::version) .def("newestVersion", &IModInterface::newestVersion) .def("ignoredVersion", &IModInterface::ignoredVersion)