Rollback to setGameName instead of setGamePlugin for mod interface.

This commit is contained in:
Mikaël Capelle
2020-05-19 17:58:44 +02:00
parent 29a5eb8366
commit d70942efa1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -995,7 +995,7 @@ BOOST_PYTHON_MODULE(mobase)
.def("addCategory", bpy::pure_virtual(&IModInterface::addCategory))
.def("removeCategory", bpy::pure_virtual(&IModInterface::removeCategory))
.def("categories", bpy::pure_virtual(&IModInterface::categories))
.def("setGamePlugin", bpy::pure_virtual(&IModInterface::setGamePlugin))
.def("setGameName", bpy::pure_virtual(&IModInterface::setGameName))
.def("setName", bpy::pure_virtual(&IModInterface::setName))
.def("remove", bpy::pure_virtual(&IModInterface::remove))
;