summaryrefslogtreecommitdiff
path: root/src/map/intif.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-09-16 12:31:37 -0300
committershennetsind <ind@henn.et>2013-09-16 12:31:37 -0300
commit8fb81341feedb5d00175d83e816f4d2ec2d4eb36 (patch)
tree367f9ad9d60537832c6afdfa674ab94aa011207d /src/map/intif.c
parent7f933ea6cb66e4deb2dc53c7aa3a96d82cb2884d (diff)
downloadhercules-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/intif.c')
-rw-r--r--src/map/intif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/intif.c b/src/map/intif.c
index 180195e4c..ac1471d23 100644
--- a/src/map/intif.c
+++ b/src/map/intif.c
@@ -1419,7 +1419,7 @@ int intif_parse_questlog(int fd)
{
memcpy(&sd->quest_log[i], RFIFOP(fd, i*sizeof(struct quest)+8), sizeof(struct quest));
- sd->quest_index[i] = quest_search_db(sd->quest_log[i].quest_id);
+ sd->quest_index[i] = quest->search_db(sd->quest_log[i].quest_id);
if( sd->quest_index[i] < 0 )
{
@@ -1434,7 +1434,7 @@ int intif_parse_questlog(int fd)
sd->avail_quests--;
}
- quest_pc_login(sd);
+ quest->pc_login(sd);
return 0;
}