Write new line character sequence at end of print()
Fix regression of commit
5e507c9829
"Add server side ncurses terminal"
where no line termination character was printed after a
lua print outside of terminal mode.
Fixes #3350.
master
parent
6f95bb1ef3
commit
4ae6e509ff
|
@ -1473,7 +1473,7 @@ void Server::printToConsoleOnly(const std::string &text)
|
||||||
m_admin_chat->outgoing_queue.push_back(
|
m_admin_chat->outgoing_queue.push_back(
|
||||||
new ChatEventChat("", utf8_to_wide(text)));
|
new ChatEventChat("", utf8_to_wide(text)));
|
||||||
} else {
|
} else {
|
||||||
std::cout << text;
|
std::cout << text << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue