Write new line character sequence at end of print()
[oweals/minetest.git] / src / server.cpp
index 6cb79c8754b77eab96613ad983aa2147fde8b358..9315fcf80d9d6654e25d28d0084ecaff01913962 100644 (file)
@@ -1473,7 +1473,7 @@ void Server::printToConsoleOnly(const std::string &text)
                m_admin_chat->outgoing_queue.push_back(
                        new ChatEventChat("", utf8_to_wide(text)));
        } else {
-               std::cout << text;
+               std::cout << text << std::endl;
        }
 }