summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorKevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-14 02:32:24 +0000
committerKevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-04-14 02:32:24 +0000
commit02a755111f9a707cc7fdef81772c74b1d10242b1 (patch)
tree83d051a5e7e3826a4c5fc50780cde68ebe82111c /src/map/pc.c
parent9fccafd43e1c30947f3d3748b30ecc292ec3bbe9 (diff)
downloadhercules-02a755111f9a707cc7fdef81772c74b1d10242b1.tar.gz
hercules-02a755111f9a707cc7fdef81772c74b1d10242b1.tar.bz2
hercules-02a755111f9a707cc7fdef81772c74b1d10242b1.tar.xz
hercules-02a755111f9a707cc7fdef81772c74b1d10242b1.zip
Some more updates to the quest log system. It has been completely moved to the inter server instead of the char server.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12584 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index 32f102b6e..5fc764cb1 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -374,7 +374,6 @@ int pc_makesavestatus(struct map_session_data *sd)
memcpy(&sd->status.last_point,&sd->status.save_point,sizeof(sd->status.last_point));
}
- quest_make_savedata(sd);
return 0;
}
@@ -866,9 +865,6 @@ bool pc_authok(struct map_session_data *sd, int login_id2, time_t expiration_tim
clif_wis_message(sd->fd, wisp_server_name, tmpstr, strlen(tmpstr)+1);
}
- //Get quest data out of char dat
- quest_load_info(sd, st);
-
// Request all registries (auth is considered completed whence they arrive)
intif_request_registry(sd,7);
return true;
@@ -982,6 +978,8 @@ int pc_reg_received(struct map_session_data *sd)
intif_Mail_requestinbox(sd->status.char_id, 0); // MAIL SYSTEM - Request Mail Inbox
#endif
+ intif_request_questlog(sd);
+
if (!sd->state.connect_new && sd->fd)
{ //Character already loaded map! Gotta trigger LoadEndAck manually.
sd->state.connect_new = 1;