diff options
author | joschiwald <joschiwald@online.de> | 2013-07-31 11:07:58 +0200 |
---|---|---|
committer | joschiwald <joschiwald@online.de> | 2013-07-31 11:07:58 +0200 |
commit | f04217300c13586faef25fbf1804272f28313eae (patch) | |
tree | f73ba7d06ddad21d662b670e9750a2dd98c77cc2 /src | |
parent | bab04cc5f806c2dd42df561f5da4013ab95a51de (diff) |
Core/Battleground: fix type mismatch
Ref #10320
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Battlegrounds/Battleground.cpp | 2 | ||||
-rw-r--r-- | src/server/game/Battlegrounds/Battleground.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Battlegrounds/Battleground.cpp b/src/server/game/Battlegrounds/Battleground.cpp index ca9f8f5891b..bd8db17b025 100644 --- a/src/server/game/Battlegrounds/Battleground.cpp +++ b/src/server/game/Battlegrounds/Battleground.cpp @@ -1425,7 +1425,7 @@ void Battleground::RemovePlayerFromResurrectQueue(uint64 player_guid) } } -void Battleground::RelocateDeadPlayers(uint32 queueIndex) +void Battleground::RelocateDeadPlayers(uint64 queueIndex) { // Those who are waiting to resurrect at this node are taken to the closest own node's graveyard std::vector<uint64>& ghostList = m_ReviveQueue[queueIndex]; diff --git a/src/server/game/Battlegrounds/Battleground.h b/src/server/game/Battlegrounds/Battleground.h index 8bcd5d8683c..52f86b98b79 100644 --- a/src/server/game/Battlegrounds/Battleground.h +++ b/src/server/game/Battlegrounds/Battleground.h @@ -376,7 +376,7 @@ class Battleground void RemovePlayerFromResurrectQueue(uint64 player_guid); /// Relocate all players in ReviveQueue to the closest graveyard - void RelocateDeadPlayers(uint32 queueIndex); + void RelocateDeadPlayers(uint64 queueIndex); void StartBattleground(); |