diff options
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/guildhandler.cpp | 6 | ||||
-rw-r--r-- | src/net/tmwa/protocol.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/net/tmwa/guildhandler.cpp b/src/net/tmwa/guildhandler.cpp index 4796ce5c8..60cdbd453 100644 --- a/src/net/tmwa/guildhandler.cpp +++ b/src/net/tmwa/guildhandler.cpp @@ -61,7 +61,7 @@ GuildHandler::GuildHandler() : SMSG_GUILD_POS_INFO_LIST, SMSG_GUILD_POSITION_CHANGED, SMSG_GUILD_MEMBER_POS_CHANGE, - SMSG_GUILD_EMBLEM, + SMSG_GUILD_EMBLEM_DATA, SMSG_GUILD_SKILL_INFO, SMSG_GUILD_NOTICE, SMSG_GUILD_INVITE, @@ -139,8 +139,8 @@ void GuildHandler::handleMessage(Net::MessageIn &msg) processGuildMemberPosChange(msg); break; - case SMSG_GUILD_EMBLEM: - processGuildEmblem(msg); + case SMSG_GUILD_EMBLEM_DATA: + processGuildEmblemData(msg); break; case SMSG_GUILD_SKILL_INFO: diff --git a/src/net/tmwa/protocol.h b/src/net/tmwa/protocol.h index a5c959878..82ba472ab 100644 --- a/src/net/tmwa/protocol.h +++ b/src/net/tmwa/protocol.h @@ -169,7 +169,7 @@ #define SMSG_GUILD_POS_INFO_LIST 0x0160 #define SMSG_GUILD_POSITION_CHANGED 0x0174 #define SMSG_GUILD_MEMBER_POS_CHANGE 0x0156 -#define SMSG_GUILD_EMBLEM 0x0152 +#define SMSG_GUILD_EMBLEM_DATA 0x0152 #define SMSG_GUILD_SKILL_INFO 0x0162 #define SMSG_GUILD_NOTICE 0x016f #define SMSG_GUILD_INVITE 0x016a |