diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2005-10-23 18:33:07 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2005-10-23 18:33:07 +0000 |
commit | 18b932ae7b11a75c3d68141789c42a20bb27396c (patch) | |
tree | 921b87db1865a467541a2320b7e7d55b4f0e700a /src/main.cpp | |
parent | 92bd17b9aef29611798372b8b0afad65c4221bb5 (diff) | |
download | manaserv-18b932ae7b11a75c3d68141789c42a20bb27396c.tar.gz manaserv-18b932ae7b11a75c3d68141789c42a20bb27396c.tar.bz2 manaserv-18b932ae7b11a75c3d68141789c42a20bb27396c.tar.xz manaserv-18b932ae7b11a75c3d68141789c42a20bb27396c.zip |
Grammar Corrections, and a little bit of work on getting the name of the Db.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 30b547f7..d9d627e8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -62,7 +62,7 @@ std::string scriptLanguage = "squirrel"; #endif // SCRIPT_SUPPORT #define LOG_FILE "tmwserv.log" - +#define SERVER_VERSION "Pre-Milestone1" #define TMW_WORLD_TICK SDL_USEREVENT #define SERVER_PORT 9601 @@ -214,7 +214,7 @@ int main(int argc, char *argv[]) connectionHandler->registerHandler(CMSG_USE_ITEM, gameHandler); // NOTE: this is probably redundant (CMSG_USE_OBJECT) connectionHandler->registerHandler(CMSG_EQUIP, gameHandler); - //LOG_INFO("The Mana World Server v" << PACKAGE_VERSION) PACKAGE_VERSION undeclared + LOG_INFO("The Mana World Server v" << SERVER_VERSION) session->startListen(connectionHandler.get(), SERVER_PORT); LOG_INFO("Listening on port " << SERVER_PORT << "...") @@ -259,7 +259,7 @@ int main(int argc, char *argv[]) SDL_Delay(100); } - LOG_INFO("Recieved Quit signal, closing down...") + LOG_INFO("Received: Quit signal, closing down...") session->stopListen(SERVER_PORT); deinitialize(); |