summaryrefslogtreecommitdiff
path: root/src/account-server/main-account.cpp
diff options
context:
space:
mode:
authorGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-08-13 09:55:33 +0000
committerGuillaume Melquiond <guillaume.melquiond@gmail.com>2007-08-13 09:55:33 +0000
commit20b7acf8d94c89452f7d603c703dbf4cfc95f57f (patch)
treec74e75368440ac5eff14b47661afd0c004cb5ccf /src/account-server/main-account.cpp
parentdddbb52f6724b8b0dd6f99b996e50ad9bfbca432 (diff)
downloadmanaserv-20b7acf8d94c89452f7d603c703dbf4cfc95f57f.tar.gz
manaserv-20b7acf8d94c89452f7d603c703dbf4cfc95f57f.tar.bz2
manaserv-20b7acf8d94c89452f7d603c703dbf4cfc95f57f.tar.xz
manaserv-20b7acf8d94c89452f7d603c703dbf4cfc95f57f.zip
Deleted obsolete files. Cleaned configuration. Removed obsolete SQL tables.
Diffstat (limited to 'src/account-server/main-account.cpp')
-rw-r--r--src/account-server/main-account.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/account-server/main-account.cpp b/src/account-server/main-account.cpp
index 70cde480..a53e693d 100644
--- a/src/account-server/main-account.cpp
+++ b/src/account-server/main-account.cpp
@@ -33,7 +33,6 @@
#include "configuration.h"
#include "resourcemanager.h"
-#include "skill.h"
#include "account-server/accounthandler.hpp"
#include "account-server/guildmanager.hpp"
#include "account-server/serverhandler.hpp"
@@ -53,8 +52,6 @@
bool running = true; /**< Determines if server keeps running */
-Skill skillTree("base"); /**< Skill tree */
-
Configuration config; /**< XML config reader */
utils::StringFilter *stringFilter; /**< Slang's Filter */
@@ -167,17 +164,6 @@ void initialize()
exit(2);
}
-
-#if defined (MYSQL_SUPPORT)
- LOG_INFO("Using MySQL DB Backend.");
-#elif defined (POSTGRESQL_SUPPORT)
- LOG_INFO("Using PostGreSQL DB Backend.");
-#elif defined (SQLITE_SUPPORT)
- LOG_INFO("Using SQLite DB Backend.");
-#else
- LOG_WARN("No Database Backend Support.");
-#endif
-
// Initialize configuration defaults
config.setValue("dbuser", "");
config.setValue("dbpass", "");