diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-04-20 22:00:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-04-21 04:35:26 +0300 |
commit | 62fa051ace7097e78134d46505070a70c08e128f (patch) | |
tree | e62db526eeb9597b0832e5dab3d8f42368550bf7 /src/client.cpp | |
parent | 5c3c35a75cb7dbbc5ac30f4a5c810f8e0e0da3fa (diff) | |
download | plus-62fa051ace7097e78134d46505070a70c08e128f.tar.gz plus-62fa051ace7097e78134d46505070a70c08e128f.tar.bz2 plus-62fa051ace7097e78134d46505070a70c08e128f.tar.xz plus-62fa051ace7097e78134d46505070a70c08e128f.zip |
Add item option db. For now unused.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp index 2868b675d..72aac6391 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -115,6 +115,7 @@ #include "resources/db/horsedb.h" #include "resources/db/itemdb.h" #include "resources/db/itemfielddb.h" +#include "resources/db/itemoptiondb.h" #include "resources/db/languagedb.h" #include "resources/db/sounddb.h" #include "resources/db/mapdb.h" @@ -638,6 +639,7 @@ void Client::gameClear() TextDb::unload(); EmoteDB::unload(); ItemDB::unload(); + ItemOptionDb::unload(); ItemFieldDb::unload(); const ServerTypeT type = Net::getNetworkType(); if (type == ServerType::EATHENA || @@ -1370,6 +1372,7 @@ int Client::gameExec() TextDb::load(); MapDB::load(); ItemFieldDb::load(); + ItemOptionDb::load(); ItemDB::load(); Being::load(); const ServerTypeT type = Net::getNetworkType(); |