diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/ConnectWindow.cpp | 2 | ||||
-rw-r--r-- | src/ingen/main.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp index 171113fb..cc7b6d7c 100644 --- a/src/gui/ConnectWindow.cpp +++ b/src/gui/ConnectWindow.cpp @@ -248,7 +248,7 @@ ConnectWindow::connect(bool existing) #endif // defined(HAVE_LIBLO) || defined(HAVE_SOUP) if (_mode == INTERNAL) { if (!world->local_engine()) - world->load_module("engine"); + world->load_module("server"); SharedPtr<SigClientInterface> client(new SigClientInterface()); diff --git a/src/ingen/main.cpp b/src/ingen/main.cpp index 57f59793..f93e333b 100644 --- a/src/ingen/main.cpp +++ b/src/ingen/main.cpp @@ -119,8 +119,8 @@ main(int argc, char** argv) // Run engine if (conf.option("engine").get_bool()) { - ingen_try(world->load_module("engine"), - "Unable to load engine module"); + ingen_try(world->load_module("server"), + "Unable to load server module"); ingen_try(world->local_engine(), "Unable to create engine"); |