diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-09 20:00:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-10 23:31:49 +0300 |
commit | e3993d5eb974ab13d256f1cce946ec1e055192c8 (patch) | |
tree | 385b343edcc6591c1ee08e5a0fb7de88fe9906ad /src/map/quest.c | |
parent | b18a0e350abe20202ba787716feb7b39a23b6de4 (diff) | |
download | hercules-e3993d5eb974ab13d256f1cce946ec1e055192c8.tar.gz hercules-e3993d5eb974ab13d256f1cce946ec1e055192c8.tar.bz2 hercules-e3993d5eb974ab13d256f1cce946ec1e055192c8.tar.xz hercules-e3993d5eb974ab13d256f1cce946ec1e055192c8.zip |
Add new logging types.
Diffstat (limited to 'src/map/quest.c')
-rw-r--r-- | src/map/quest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/quest.c b/src/map/quest.c index bf0a76b16..79328ae9d 100644 --- a/src/map/quest.c +++ b/src/map/quest.c @@ -316,7 +316,7 @@ void quest_update_objective(struct map_session_data *sd, int mob_id) item.nameid = dropitem->nameid; item.identify = itemdb->isidentified2(data); item.amount = 1; - if((temp = pc->additem(sd, &item, 1, LOG_TYPE_OTHER)) != 0) { // TODO: We might want a new log type here? + if((temp = pc->additem(sd, &item, 1, LOG_TYPE_QUEST)) != 0) { // TODO: We might want a new log type here? // Failed to obtain the item clif->additem(sd, 0, 0, temp); } |