diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/guildhandler.cpp | 6 | ||||
-rw-r--r-- | src/net/eathena/protocol.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/guildhandler.cpp b/src/net/eathena/guildhandler.cpp index 86a0b2d03..241ff2bb3 100644 --- a/src/net/eathena/guildhandler.cpp +++ b/src/net/eathena/guildhandler.cpp @@ -59,7 +59,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, @@ -134,8 +134,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/eathena/protocol.h b/src/net/eathena/protocol.h index 02c024c88..5e8d85919 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -237,7 +237,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 |