diff options
Diffstat (limited to 'src/server/game/Globals/ObjectMgr.cpp')
-rwxr-xr-x | src/server/game/Globals/ObjectMgr.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp index 2e222fad61d..0aca9da6d57 100755 --- a/src/server/game/Globals/ObjectMgr.cpp +++ b/src/server/game/Globals/ObjectMgr.cpp @@ -2012,7 +2012,7 @@ uint64 ObjectMgr::GetPlayerGUIDByName(std::string name) const return guid; } -bool ObjectMgr::GetPlayerNameByGUID(const uint64 &guid, std::string &name) const +bool ObjectMgr::GetPlayerNameByGUID(const uint64 guid, std::string &name) const { // prevent DB access for online player if (Player* player = ObjectAccessor::FindPlayer(guid)) @@ -2032,7 +2032,7 @@ bool ObjectMgr::GetPlayerNameByGUID(const uint64 &guid, std::string &name) const return false; } -uint32 ObjectMgr::GetPlayerTeamByGUID(const uint64 &guid) const +uint32 ObjectMgr::GetPlayerTeamByGUID(const uint64 guid) const { // prevent DB access for online player if (Player* player = ObjectAccessor::FindPlayer(guid)) @@ -2051,7 +2051,7 @@ uint32 ObjectMgr::GetPlayerTeamByGUID(const uint64 &guid) const return 0; } -uint32 ObjectMgr::GetPlayerAccountIdByGUID(const uint64 &guid) const +uint32 ObjectMgr::GetPlayerAccountIdByGUID(const uint64 guid) const { // prevent DB access for online player if (Player* player = ObjectAccessor::FindPlayer(guid)) |