diff options
author | Susu <bruant.bastien@gmail.com> | 2013-06-25 14:12:21 +0200 |
---|---|---|
committer | Susu <bruant.bastien@gmail.com> | 2013-06-25 14:12:21 +0200 |
commit | 71627e92fbe36c23993456486a308acd0428fd3d (patch) | |
tree | 11944c4fbab516994661ad56e9656d421b025c81 /src/map/quest.c | |
parent | 5b40d0c2937c2fe4f8e133271d05602543d86277 (diff) | |
download | hercules-71627e92fbe36c23993456486a308acd0428fd3d.tar.gz hercules-71627e92fbe36c23993456486a308acd0428fd3d.tar.bz2 hercules-71627e92fbe36c23993456486a308acd0428fd3d.tar.xz hercules-71627e92fbe36c23993456486a308acd0428fd3d.zip |
- Added 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; } |