aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameplay.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gameplay.cpp')
-rw-r--r--src/gameplay.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gameplay.cpp b/src/gameplay.cpp
index 724ca9c..bf37256 100644
--- a/src/gameplay.cpp
+++ b/src/gameplay.cpp
@@ -60,6 +60,19 @@ int commonAIFunc(NPC *speaker){
do{
if(!strcmp(exml->Name(),"text")){
if(exml->UnsignedAttribute("id") == (unsigned)speaker->dialogIndex){
+
+ /*
+ * Handle any quest tags
+ */
+
+ if((oxml = exml->FirstChildElement("quest"))){
+ const char *qname;
+ while(oxml){
+ if((qname = oxml->Attribute("assign")))
+ player->qh.current.push_back((Quest){qname,"None",(struct item_t){0,0}});
+ oxml = oxml->NextSiblingElement();
+ }
+ }
/*
* Handle any 'give' requests.