summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex <24834740+GreenXenith@users.noreply.github.com>2022-01-15 08:45:33 -0800
committerGitHub <noreply@github.com>2022-01-15 17:45:33 +0100
commit7c93b2d7a3b681bcb10450229140858c4ba54c3c (patch)
tree47a9288018644303545e29fbbd8a233964afed0f
parent9a12e4499ecf5c1a3467af9c831d0d350a21923d (diff)
downloadminetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.tar.gz
minetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.tar.bz2
minetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.zip
Give the ASCII console splash a facelift
-rw-r--r--src/server.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server.cpp b/src/server.cpp
index fdf02ed50..cff4cc58c 100644
--- a/src/server.cpp
+++ b/src/server.cpp
@@ -512,12 +512,12 @@ void Server::start()
// ASCII art for the win!
std::cerr
- << " .__ __ __ " << std::endl
- << " _____ |__| ____ _____/ |_ ____ _______/ |_ " << std::endl
- << " / \\| |/ \\_/ __ \\ __\\/ __ \\ / ___/\\ __\\" << std::endl
- << "| Y Y \\ | | \\ ___/| | \\ ___/ \\___ \\ | | " << std::endl
- << "|__|_| /__|___| /\\___ >__| \\___ >____ > |__| " << std::endl
- << " \\/ \\/ \\/ \\/ \\/ " << std::endl;
+ << " __. __. __. " << std::endl
+ << " _____ |__| ____ _____ / |_ _____ _____ / |_ " << std::endl
+ << " / \\| |/ \\ / __ \\ _\\/ __ \\/ __> _\\" << std::endl
+ << "| Y Y \\ | | \\ ___/| | | ___/\\___ \\| | " << std::endl
+ << "|__|_| / |___| /\\______> | \\______>_____/| | " << std::endl
+ << " \\/ \\/ \\/ \\/ \\/ " << std::endl;
actionstream << "World at [" << m_path_world << "]" << std::endl;
actionstream << "Server for gameid=\"" << m_gamespec.id
<< "\" listening on ";