diff options
author | megamage <none@none> | 2009-03-09 17:48:18 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-09 17:48:18 -0600 |
commit | f9aaf5bffb2686fda61016edc920a5a54845ea43 (patch) | |
tree | 716a9d8a59d872b0c00d6c6c8599cbf2844fcf7f /src/game/PetitionsHandler.cpp | |
parent | 209f24d7e09785878abd8e3b94be4e2dff07b0f7 (diff) |
[7422] Allow localization base at guildmaster locale default guild rank names at guild creating. Author: VladimirMangos
--HG--
branch : trunk
Diffstat (limited to 'src/game/PetitionsHandler.cpp')
-rw-r--r-- | src/game/PetitionsHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/PetitionsHandler.cpp b/src/game/PetitionsHandler.cpp index df9761a7f53..2b225283749 100644 --- a/src/game/PetitionsHandler.cpp +++ b/src/game/PetitionsHandler.cpp @@ -826,7 +826,7 @@ void WorldSession::HandleTurnInPetitionOpcode(WorldPacket & recv_data) if(type == 9) // create guild { Guild* guild = new Guild; - if(!guild->create(_player->GetGUID(), name)) + if(!guild->create(_player, name)) { delete guild; delete result; |