mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[8927] added missing continue for last commit
This commit is contained in:
parent
1de6692e04
commit
23f603268d
2 changed files with 4 additions and 1 deletions
|
|
@ -748,7 +748,10 @@ void BattleGround::EndBattleGround(uint32 winner)
|
||||||
}
|
}
|
||||||
Player *plr = sObjectMgr.GetPlayer(itr->first);
|
Player *plr = sObjectMgr.GetPlayer(itr->first);
|
||||||
if (!plr)
|
if (!plr)
|
||||||
|
{
|
||||||
sLog.outError("BattleGround:EndBattleGround Player (GUID: %u) not found!", GUID_LOPART(itr->first));
|
sLog.outError("BattleGround:EndBattleGround Player (GUID: %u) not found!", GUID_LOPART(itr->first));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// should remove spirit of redemption
|
// should remove spirit of redemption
|
||||||
if (plr->HasAuraType(SPELL_AURA_SPIRIT_OF_REDEMPTION))
|
if (plr->HasAuraType(SPELL_AURA_SPIRIT_OF_REDEMPTION))
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "8926"
|
#define REVISION_NR "8927"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue