summaryrefslogtreecommitdiff
path: root/src/map/map.cpp
diff options
context:
space:
mode:
authorwushin <pasekei@gmail.com>2015-04-05 23:11:16 -0500
committerwushin <pasekei@gmail.com>2015-04-25 12:26:55 -0500
commit950bc8a1a239829864600b82e40d801514fca709 (patch)
tree3252c51e196bec00a441f3cade55d03a8dd75eec /src/map/map.cpp
parente6ee7b3f99935a594e6462472fdc9d075408da0f (diff)
downloadtmwa-950bc8a1a239829864600b82e40d801514fca709.tar.gz
tmwa-950bc8a1a239829864600b82e40d801514fca709.tar.bz2
tmwa-950bc8a1a239829864600b82e40d801514fca709.tar.xz
tmwa-950bc8a1a239829864600b82e40d801514fca709.zip
Add Bitmasked Quest Log
Diffstat (limited to 'src/map/map.cpp')
-rw-r--r--src/map/map.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/map.cpp b/src/map/map.cpp
index d502fbb..c1d760a 100644
--- a/src/map/map.cpp
+++ b/src/map/map.cpp
@@ -74,6 +74,7 @@
#include "magic-v2.hpp"
#include "map_conf.hpp"
#include "mob.hpp"
+#include "quest.hpp"
#include "npc.hpp"
#include "npc-parse.hpp"
#include "party.hpp"
@@ -1489,6 +1490,8 @@ bool map_confs(io::Spanned<XString> key, io::Spanned<ZString> value)
return itemdb_readdb(value.data);
if (key.data == "mob_db"_s)
return mob_readdb(value.data);
+ if (key.data == "quest_db"_s)
+ return quest_readdb(value.data);
if (key.data == "mob_skill_db"_s)
return mob_readskilldb(value.data);
if (key.data == "skill_db"_s)