diff options
author | Alex <24834740+GreenXenith@users.noreply.github.com> | 2022-01-15 08:45:33 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-15 17:45:33 +0100 |
commit | 7c93b2d7a3b681bcb10450229140858c4ba54c3c (patch) | |
tree | 47a9288018644303545e29fbbd8a233964afed0f /src | |
parent | 9a12e4499ecf5c1a3467af9c831d0d350a21923d (diff) | |
download | minetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.tar.gz minetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.tar.bz2 minetest-7c93b2d7a3b681bcb10450229140858c4ba54c3c.zip |
Give the ASCII console splash a facelift
Diffstat (limited to 'src')
-rw-r--r-- | src/server.cpp | 12 |
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 "; |