Skip to content

Commit

Permalink
Core/BG: Refix cf711ff Thanks Kiddie
Browse files Browse the repository at this point in the history
  • Loading branch information
kaelima committed Sep 4, 2012
1 parent ed6b58b commit b8d55cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Handlers/BattleGroundHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ void WorldSession::HandleBattleFieldPortOpcode(WorldPacket &recv_data)
sLog->outDebug(LOG_FILTER_BATTLEGROUND, "Battleground: player %s (%u) joined battle for bg %u, bgtype %u, queue type %u.", _player->GetName(), _player->GetGUIDLow(), bg->GetInstanceID(), bg->GetTypeID(), bgQueueTypeId);
break;
case 0: // leave queue
if (bg->GetStatus() != STATUS_WAIT_QUEUE)
if (bg->isArena() && bg->GetStatus() != STATUS_WAIT_QUEUE)
return;

// if player leaves rated arena match before match start, it is counted as he played but he lost
Expand Down

0 comments on commit b8d55cc

Please sign in to comment.