diff options
author | shennetsind <ind@henn.et> | 2013-09-16 12:31:37 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-09-16 12:31:37 -0300 |
commit | 8fb81341feedb5d00175d83e816f4d2ec2d4eb36 (patch) | |
tree | 367f9ad9d60537832c6afdfa674ab94aa011207d /src/map/mob.c | |
parent | 7f933ea6cb66e4deb2dc53c7aa3a96d82cb2884d (diff) | |
download | hercules-8fb81341feedb5d00175d83e816f4d2ec2d4eb36.tar.gz hercules-8fb81341feedb5d00175d83e816f4d2ec2d4eb36.tar.bz2 hercules-8fb81341feedb5d00175d83e816f4d2ec2d4eb36.tar.xz hercules-8fb81341feedb5d00175d83e816f4d2ec2d4eb36.zip |
HPM: Quest.c Interface
Fully Integrated
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 701a89b6c..3b3ff0797 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2568,9 +2568,9 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) } if( sd->status.party_id ) - iMap->foreachinrange(quest_update_objective_sub,&md->bl,AREA_SIZE,BL_PC,sd->status.party_id,md->class_); + iMap->foreachinrange(quest->update_objective_sub,&md->bl,AREA_SIZE,BL_PC,sd->status.party_id,md->class_); else if( sd->avail_quests ) - quest_update_objective(sd, md->class_); + quest->update_objective(sd, md->class_); if( sd->md && src && src->type != BL_HOM && mob->db(md->class_)->lv > sd->status.base_level/2 ) mercenary->kills(sd->md); |