From: est31 Date: Sun, 8 Nov 2015 21:23:16 +0000 (+0100) Subject: Write new line character sequence at end of print() X-Git-Tag: 0.4.14~459 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4ae6e509ffe886492598610a3511179ad87c1f43;p=oweals%2Fminetest.git Write new line character sequence at end of print() Fix regression of commit 5e507c9829942c434a6f1ae7a4f3a488c7e50bef "Add server side ncurses terminal" where no line termination character was printed after a lua print outside of terminal mode. Fixes #3350. --- diff --git a/src/server.cpp b/src/server.cpp index 6cb79c875..9315fcf80 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -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; } }