diff options
-rw-r--r-- | main.lua | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -88,7 +88,9 @@ end start("xmppclient", { ssl = global_ssl_ctx }) start("xmppserver", { ssl = global_ssl_ctx }) -start("console") +if config.get("*", "core", "console_enabled") then + start("console") +end modulemanager.fire_event("server-started"); |