mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
Fixed typo.
This commit is contained in:
parent
bad00af71c
commit
8ad6f70c35
1 changed files with 7 additions and 6 deletions
|
|
@ -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 )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue