diff options
Diffstat (limited to 'src/core/netconnection.cc')
-rw-r--r-- | src/core/netconnection.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/netconnection.cc b/src/core/netconnection.cc index 55480d2..2bcd6dc 100644 --- a/src/core/netconnection.cc +++ b/src/core/netconnection.cc @@ -141,7 +141,7 @@ void NetConnection::receive() connection_timeout = core::application()->time(); if (bytes_received == 0) { - con_print << "Disconnected."; + con_print << "^BDisconnected."; abort(); return; } else if (bytes_received < 0) { @@ -296,7 +296,7 @@ void NetConnection::parse_incoming_message(const std::string & message) } else if (command == "connect") { connection_state = Connected; - con_print << "Connected." << std::endl; + con_print << "^BConnected." << std::endl; return; } else if (command == "disconnect") { |