[9705] Fixed typo.

This fixes assert in Player::AddQuest when quest log is full.

Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
ApoC 2010-04-09 11:09:48 +02:00
parent 12c3227e32
commit 8aa9d795be
2 changed files with 2 additions and 2 deletions

View file

@ -13583,7 +13583,7 @@ bool Player::SatisfyQuestLog( bool msg )
GetSession()->SendPacket( &data ); GetSession()->SendPacket( &data );
sLog.outDebug( "WORLD: Sent SMSG_QUESTLOG_FULL" ); sLog.outDebug( "WORLD: Sent SMSG_QUESTLOG_FULL" );
} }
return true; return false;
} }
bool Player::SatisfyQuestPreviousQuest( Quest const* qInfo, bool msg ) bool Player::SatisfyQuestPreviousQuest( Quest const* qInfo, bool msg )

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9704" #define REVISION_NR "9705"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__