mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[7359] Fixed crash when removing battleground from BGFreeSlotQueue.
Fixed player will now drop a flag before he logs out, if he is in BG. Signed-off-by: Triply <triply@getmangos.com>
This commit is contained in:
parent
2791d5a6d3
commit
4994611582
3 changed files with 8 additions and 2 deletions
|
|
@ -644,8 +644,9 @@ void BattleGroundQueue::Update(BattleGroundTypeId bgTypeId, BGQueueIdBasedOnLeve
|
||||||
|
|
||||||
//battleground with free slot for player should be always in the beggining of the queue
|
//battleground with free slot for player should be always in the beggining of the queue
|
||||||
// maybe it would be better to create bgfreeslotqueue for each queue_id_based_on_level
|
// maybe it would be better to create bgfreeslotqueue for each queue_id_based_on_level
|
||||||
|
bool continueAdding = true;
|
||||||
BGFreeSlotQueueType::iterator itr, next;
|
BGFreeSlotQueueType::iterator itr, next;
|
||||||
for (itr = sBattleGroundMgr.BGFreeSlotQueue[bgTypeId].begin(); itr != sBattleGroundMgr.BGFreeSlotQueue[bgTypeId].end(); itr = next)
|
for (itr = sBattleGroundMgr.BGFreeSlotQueue[bgTypeId].begin(); continueAdding && itr != sBattleGroundMgr.BGFreeSlotQueue[bgTypeId].end(); itr = next)
|
||||||
{
|
{
|
||||||
next = itr;
|
next = itr;
|
||||||
++next;
|
++next;
|
||||||
|
|
@ -671,6 +672,8 @@ void BattleGroundQueue::Update(BattleGroundTypeId bgTypeId, BGQueueIdBasedOnLeve
|
||||||
|
|
||||||
if( !bg->HasFreeSlots() )
|
if( !bg->HasFreeSlots() )
|
||||||
{
|
{
|
||||||
|
if( next == sBattleGroundMgr.BGFreeSlotQueue[bgTypeId].end() )
|
||||||
|
continueAdding = false;
|
||||||
// remove BG from BGFreeSlotQueue
|
// remove BG from BGFreeSlotQueue
|
||||||
bg->RemoveFromBGFreeSlotQueue();
|
bg->RemoveFromBGFreeSlotQueue();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -302,6 +302,9 @@ void WorldSession::LogoutPlayer(bool Save)
|
||||||
_player->BuildPlayerRepop();
|
_player->BuildPlayerRepop();
|
||||||
_player->RepopAtGraveyard();
|
_player->RepopAtGraveyard();
|
||||||
}
|
}
|
||||||
|
//drop a flag if player is carrying it
|
||||||
|
if(BattleGround *bg = _player->GetBattleGround())
|
||||||
|
bg->EventPlayerDroppedFlag(_player);
|
||||||
|
|
||||||
///- Teleport to home if the player is in an invalid instance
|
///- Teleport to home if the player is in an invalid instance
|
||||||
if(!_player->m_InstanceValid && !_player->isGameMaster())
|
if(!_player->m_InstanceValid && !_player->isGameMaster())
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "7358"
|
#define REVISION_NR "7359"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue