diff options
author | Orion <orion.gm@yandex.ru> | 2015-07-21 15:50:47 +0300 |
---|---|---|
committer | Orion <orion.gm@yandex.ru> | 2015-07-21 15:50:47 +0300 |
commit | 1c0cd01772bfe4cf18c47f9eddf93eea06bd83d0 (patch) | |
tree | 34bf5cffd3e2899fd1aa92977567069c4bf8a8c3 /src | |
parent | db3a35524999c8af1023896be44da48b19607a73 (diff) |
Core/PacketIO: Fix opcode number for CMSG_LF_GUILD_GET_APPLICATIONS, CMSG_GUILD_DELETE.
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Server/Protocol/Opcodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Server/Protocol/Opcodes.h b/src/server/game/Server/Protocol/Opcodes.h index 2852afe44db..a07c2978dce 100644 --- a/src/server/game/Server/Protocol/Opcodes.h +++ b/src/server/game/Server/Protocol/Opcodes.h @@ -314,7 +314,7 @@ enum OpcodeClient : uint32 CMSG_GUILD_CHALLENGE_UPDATE_REQUEST = 0x0B1D, CMSG_GUILD_CHANGE_NAME_REQUEST = 0x021A, CMSG_GUILD_DECLINE_INVITATION = 0x085D, - CMSG_GUILD_DELETE = 0x080E, + CMSG_GUILD_DELETE = 0x054E, CMSG_GUILD_DELETE_RANK = 0x095D, CMSG_GUILD_DEMOTE_MEMBER = 0x040E, CMSG_GUILD_EVENT_LOG_QUERY = 0x07CD, @@ -372,7 +372,7 @@ enum OpcodeClient : uint32 CMSG_LF_GUILD_ADD_RECRUIT = 0x0941, CMSG_LF_GUILD_BROWSE = 0x0022, CMSG_LF_GUILD_DECLINE_RECRUIT = 0x068A, - CMSG_LF_GUILD_GET_APPLICATIONS = 0x054E, + CMSG_LF_GUILD_GET_APPLICATIONS = 0x080E, CMSG_LF_GUILD_GET_GUILD_POST = 0x0709, CMSG_LF_GUILD_GET_RECRUITS = 0x078A, CMSG_LF_GUILD_REMOVE_RECRUIT = 0x0449, |