diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-05-06 15:11:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-05-06 15:11:30 +0300 |
commit | f7c9165e0f59a33404a486c0b154a2c21ed9a9fa (patch) | |
tree | 4b2ed9168a0459bc1d0a06c0db0fe5df73e0a19e /src/client.cpp | |
parent | c53f4620bdaa1ae3fe0a15aa237ea88d28da0954 (diff) | |
download | plus-f7c9165e0f59a33404a486c0b154a2c21ed9a9fa.tar.gz plus-f7c9165e0f59a33404a486c0b154a2c21ed9a9fa.tar.bz2 plus-f7c9165e0f59a33404a486c0b154a2c21ed9a9fa.tar.xz plus-f7c9165e0f59a33404a486c0b154a2c21ed9a9fa.zip |
Move specials window to manaserv only code.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index 05860592b..6425bb1d5 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -92,7 +92,9 @@ #include "resources/itemdb.h" #include "resources/mapdb.h" #include "resources/monsterdb.h" +#ifdef MANASERV_SUPPORT #include "resources/specialdb.h" +#endif #include "resources/npcdb.h" #include "resources/resourcemanager.h" @@ -1209,7 +1211,9 @@ int Client::gameExec() ItemDB::load(); Being::load(); // Hairstyles MonsterDB::load(); +#ifdef MANASERV_SUPPORT SpecialDB::load(); +#endif NPCDB::load(); EmoteDB::load(); StatusEffect::load(); |