diff options
author | Kevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-11 02:42:30 +0000 |
---|---|---|
committer | Kevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-11 02:42:30 +0000 |
commit | c6670cae6548eb6792b13f00ea6d8299c2c825fc (patch) | |
tree | c178609a56b7ba7612478cef6f8ad327494508e2 /src/map/quest.c | |
parent | eb9d9a5e40f78993ab6280df285b1a15a7f27abb (diff) | |
download | hercules-c6670cae6548eb6792b13f00ea6d8299c2c825fc.tar.gz hercules-c6670cae6548eb6792b13f00ea6d8299c2c825fc.tar.bz2 hercules-c6670cae6548eb6792b13f00ea6d8299c2c825fc.tar.xz hercules-c6670cae6548eb6792b13f00ea6d8299c2c825fc.zip |
Some quest log changes and removed one of the set char offline calls that was added in revision 12552.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12557 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/quest.c')
-rw-r--r-- | src/map/quest.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/quest.c b/src/map/quest.c index 499d78d6c..f01ff4526 100644 --- a/src/map/quest.c +++ b/src/map/quest.c @@ -35,6 +35,10 @@ //Send quest info on login
int quest_pc_login(TBL_PC * sd)
{
+
+ if(sd->num_quests == 0)
+ return 1;
+
clif_send_questlog(sd);
clif_send_questlog_info(sd);
return 0;
|