diff options
| author | Azazel <azazel.kon@gmail.com> | 2011-04-11 17:38:57 +0600 |
|---|---|---|
| committer | Azazel <azazel.kon@gmail.com> | 2011-04-11 17:38:57 +0600 |
| commit | 72040c16543f07f90b9732af1a42842be3937e6b (patch) | |
| tree | fd9fc36e1c6340a0e39d7a43b18bdf1f60b15788 /src/server/game/Server/Protocol | |
| parent | e38634186c295a0de26b30787a221689debc5c11 (diff) | |
Core/Misc: fix compilation warnings
Diffstat (limited to 'src/server/game/Server/Protocol')
| -rwxr-xr-x | src/server/game/Server/Protocol/Handlers/PetitionsHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Server/Protocol/Handlers/PetitionsHandler.cpp b/src/server/game/Server/Protocol/Handlers/PetitionsHandler.cpp index 3e716bea6e9..6ac30915ff0 100755 --- a/src/server/game/Server/Protocol/Handlers/PetitionsHandler.cpp +++ b/src/server/game/Server/Protocol/Handlers/PetitionsHandler.cpp @@ -840,7 +840,7 @@ void WorldSession::HandleTurnInPetitionOpcode(WorldPacket & recv_data) // Create arena team ArenaTeam* arenaTeam = new ArenaTeam(); - if (!arenaTeam->Create(_player->GetGUID(), type, name, background, icon, iconcolor, border, bordercolor)) + if (!arenaTeam->Create(GUID_LOPART(_player->GetGUID()), type, name, background, icon, iconcolor, border, bordercolor)) { delete arenaTeam; return; |
