diff options
author | shennetsind <notind@gmail.com> | 2013-06-27 10:30:26 -0700 |
---|---|---|
committer | shennetsind <notind@gmail.com> | 2013-06-27 10:30:26 -0700 |
commit | b97cbaf1a988370cb8cadc3d0108c19d14593b94 (patch) | |
tree | 4c7e2b722ad8baf8a165e83832988c8f89e6911f /src/map/quest.c | |
parent | dbb4ce9421aed2defb4f3566e8c0b330c08b58bc (diff) | |
parent | 56e37cb8d74da7c12814df50a1d28f59a9b8dc36 (diff) | |
download | hercules-b97cbaf1a988370cb8cadc3d0108c19d14593b94.tar.gz hercules-b97cbaf1a988370cb8cadc3d0108c19d14593b94.tar.bz2 hercules-b97cbaf1a988370cb8cadc3d0108c19d14593b94.tar.xz hercules-b97cbaf1a988370cb8cadc3d0108c19d14593b94.zip |
Merge pull request #50 from Earisu/master
Chrif interface
Diffstat (limited to 'src/map/quest.c')
-rw-r--r-- | src/map/quest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/quest.c b/src/map/quest.c index b56088886..3776d603f 100644 --- a/src/map/quest.c +++ b/src/map/quest.c @@ -100,7 +100,7 @@ int quest_add(TBL_PC * sd, int quest_id) clif->quest_add(sd, &sd->quest_log[i], sd->quest_index[i]); if( iMap->save_settings&64 ) - chrif_save(sd,0); + chrif->save(sd,0); return 0; } @@ -148,7 +148,7 @@ int quest_change(TBL_PC * sd, int qid1, int qid2) clif->quest_add(sd, &sd->quest_log[i], sd->quest_index[i]); if( iMap->save_settings&64 ) - chrif_save(sd,0); + chrif->save(sd,0); return 0; } @@ -179,7 +179,7 @@ int quest_delete(TBL_PC * sd, int quest_id) clif->quest_delete(sd, quest_id); if( iMap->save_settings&64 ) - chrif_save(sd,0); + chrif->save(sd,0); return 0; } @@ -250,7 +250,7 @@ int quest_update_status(TBL_PC * sd, int quest_id, quest_state status) { clif->quest_delete(sd, quest_id); if( iMap->save_settings&64 ) - chrif_save(sd,0); + chrif->save(sd,0); return 0; } |