diff options
Diffstat (limited to 'src/server/game/Guilds/GuildMgr.cpp')
-rw-r--r-- | src/server/game/Guilds/GuildMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Guilds/GuildMgr.cpp b/src/server/game/Guilds/GuildMgr.cpp index 1cb8419be7c..396c7cf4df2 100644 --- a/src/server/game/Guilds/GuildMgr.cpp +++ b/src/server/game/Guilds/GuildMgr.cpp @@ -1,5 +1,5 @@ /* - * Copyright (C) 2008-2012 TrinityCore <http://www.trinitycore.org/> + * Copyright (C) 2008-2013 TrinityCore <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -67,7 +67,7 @@ Guild* GuildMgr::GetGuildByGuid(uint64 guid) const { // Full guids are only used when receiving/sending data to client // everywhere else guild id is used - if (IS_GUILD(guid)) + if (IS_GUILD_GUID(guid)) if (uint32 guildId = GUID_LOPART(guid)) return GetGuildById(guildId); |