From 64d2d43f5b4fc5c5daf4c8cde01d7f6b98e85bdf Mon Sep 17 00:00:00 2001 From: hiker Date: Wed, 9 Nov 2016 23:06:17 +1100 Subject: [PATCH] Disable console (for #2665). --- src/network/stk_host.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/network/stk_host.cpp b/src/network/stk_host.cpp index 1b0f0842a..e1ba50798 100644 --- a/src/network/stk_host.cpp +++ b/src/network/stk_host.cpp @@ -47,7 +47,7 @@ #include STKHost *STKHost::m_stk_host = NULL; -bool STKHost::m_enable_console = true; +bool STKHost::m_enable_console = false; void STKHost::create() { @@ -323,6 +323,7 @@ void STKHost::init() ProtocolManager::getInstance(); // Optional: start the network console + m_network_console = NULL; if(m_enable_console) { m_network_console = new NetworkConsole();