Fixed typo.

This commit is contained in:
tomrus88 2010-03-14 13:24:45 +03:00
parent bad00af71c
commit 8ad6f70c35

View file

@ -13535,12 +13535,13 @@ bool Player::SatisfyQuestLog( bool msg )
if( FindQuestSlot(0) < MAX_QUEST_LOG_SIZE )
return true;
if( !msg )
return false;
WorldPacket data( SMSG_QUESTLOG_FULL, 0 );
GetSession()->SendPacket( &data );
sLog.outDebug( "WORLD: Sent SMSG_QUESTLOG_FULL" );
if( msg )
{
WorldPacket data( SMSG_QUESTLOG_FULL, 0 );
GetSession()->SendPacket( &data );
sLog.outDebug( "WORLD: Sent SMSG_QUESTLOG_FULL" );
}
return true;
}
bool Player::SatisfyQuestPreviousQuest( Quest const* qInfo, bool msg )