]> git.lizzy.rs Git - minetest.git/commitdiff
Mention world location at server startup at action level
authorPerttu Ahola <celeron55@gmail.com>
Sun, 11 Mar 2012 13:49:14 +0000 (15:49 +0200)
committerPerttu Ahola <celeron55@gmail.com>
Sun, 11 Mar 2012 13:49:14 +0000 (15:49 +0200)
src/server.cpp

index f68672456feae0a66ad21764b6e823f2c8ef08ff..767de035f38905e54ac4c5ee801d5d150e7ee588 100644 (file)
@@ -1098,6 +1098,7 @@ void Server::start(unsigned short port)
        <<"|  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 port "<<port<<"."<<std::endl;
 }