summaryrefslogtreecommitdiff
path: root/src/map/quest.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/quest.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/quest.c')
-rw-r--r--src/map/quest.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/map/quest.c b/src/map/quest.c
index 25c879105..51082532f 100644
--- a/src/map/quest.c
+++ b/src/map/quest.c
@@ -190,20 +190,3 @@ int quest_update_status(TBL_PC * sd, int quest_id, bool status)
return 0;
}
-
-int quest_load_info(TBL_PC * sd, struct mmo_charstatus * st)
-{
- sd->num_quests = st->num_quests;
- memcpy(sd->quest_log, st->quest_log, sizeof(st->quest_log));
-
- return 0;
-}
-
-int quest_make_savedata(TBL_PC * sd)
-{
- sd->status.num_quests = sd->num_quests;
- memcpy(sd->status.quest_log, sd->quest_log, sizeof(sd->quest_log));
-
- return 0;
-}
-