diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/char/int_quest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char/int_quest.c b/src/char/int_quest.c index cf93db51e..7b3d746dd 100644 --- a/src/char/int_quest.c +++ b/src/char/int_quest.c @@ -182,7 +182,7 @@ bool mapif_quest_update(int char_id, struct quest qd) int i; StrBuf->Init(&buf); - StrBuf->Printf(&buf, "UPDATE `%s` SET `state`='%u'", quest_db, qd.state); + StrBuf->Printf(&buf, "UPDATE `%s` SET `state`='%u', `time`='%u'", quest_db, qd.state, qd.time); for (i = 0; i < MAX_QUEST_OBJECTIVES; i++) { StrBuf->Printf(&buf, ", `count%d`='%d'", i+1, qd.count[i]); } |