aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-09-06 15:34:36 +0200
committerShauren <shauren.trinity@gmail.com>2015-09-06 15:34:36 +0200
commit344c32c1239305d0c335f96c08dc4597d66e8c29 (patch)
treea71af0bf70a3ad7f40d1c9ce67214f9080921e34
parent65999801d3085387a00d7bf0a172be77571123c5 (diff)
Core/PacketIO: Fixed a bunch of swapped opcode values
Closes #15447
-rw-r--r--src/server/game/Server/Protocol/Opcodes.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/server/game/Server/Protocol/Opcodes.h b/src/server/game/Server/Protocol/Opcodes.h
index ddf1304d334..f14db518f1d 100644
--- a/src/server/game/Server/Protocol/Opcodes.h
+++ b/src/server/game/Server/Protocol/Opcodes.h
@@ -159,11 +159,11 @@ enum OpcodeClient : uint32
CMSG_CHAR_DELETE = 0x093C,
CMSG_CHAR_RACE_OR_FACTION_CHANGE = 0x01B2,
CMSG_CHAT_ADDON_MESSAGE_CHANNEL = 0x0BF5,
- CMSG_CHAT_ADDON_MESSAGE_GUILD = 0x1E0F,
- CMSG_CHAT_ADDON_MESSAGE_INSTANCE_CHAT = 0x0A53,
- CMSG_CHAT_ADDON_MESSAGE_OFFICER = 0x11BF,
- CMSG_CHAT_ADDON_MESSAGE_PARTY = 0x11B8,
- CMSG_CHAT_ADDON_MESSAGE_RAID = 0x11C0,
+ CMSG_CHAT_ADDON_MESSAGE_GUILD = 0x0A53,
+ CMSG_CHAT_ADDON_MESSAGE_INSTANCE_CHAT = 0x11B8,
+ CMSG_CHAT_ADDON_MESSAGE_OFFICER = 0x11C0,
+ CMSG_CHAT_ADDON_MESSAGE_PARTY = 0x11BF,
+ CMSG_CHAT_ADDON_MESSAGE_RAID = 0x1E0F,
CMSG_CHAT_ADDON_MESSAGE_WHISPER = 0x13AF,
CMSG_CHAT_CHANNEL_ANNOUNCEMENTS = 0x161D,
CMSG_CHAT_CHANNEL_BAN = 0x148B,
@@ -283,7 +283,7 @@ enum OpcodeClient : uint32
CMSG_GARRISON_START_MISSION = 0x0187,
CMSG_GARRISON_SWAP_BUILDINGS = 0x0997,
CMSG_GENERATE_RANDOM_CHARACTER_NAME = 0x02F4,
- CMSG_GET_CHALLENGE_MODE_REWARDS = 0x122E,
+ CMSG_GET_CHALLENGE_MODE_REWARDS = 0x02A6,
CMSG_GET_GARRISON_INFO = 0x1235,
CMSG_GET_ITEM_PURCHASE_DATA = 0x061E,
CMSG_GET_MIRROR_IMAGE_DATA = 0x1A8D,
@@ -311,10 +311,10 @@ enum OpcodeClient : uint32
CMSG_GUILD_BANK_TEXT_QUERY = 0x0CD1,
CMSG_GUILD_BANK_UPDATE_TAB = 0x1E32,
CMSG_GUILD_BANK_WITHDRAW_MONEY = 0x0ECA,
- CMSG_GUILD_CHALLENGE_UPDATE_REQUEST = 0x0A7D,
+ CMSG_GUILD_CHALLENGE_UPDATE_REQUEST = 0x087D,
CMSG_GUILD_CHANGE_NAME_REQUEST = 0x10A5,
CMSG_GUILD_DECLINE_INVITATION = 0x00AE,
- CMSG_GUILD_DELETE = 0x087D,
+ CMSG_GUILD_DELETE = 0x122E,
CMSG_GUILD_DELETE_RANK = 0x1A3E,
CMSG_GUILD_DEMOTE_MEMBER = 0x0ED1,
CMSG_GUILD_EVENT_LOG_QUERY = 0x007D,
@@ -372,7 +372,7 @@ enum OpcodeClient : uint32
CMSG_LF_GUILD_ADD_RECRUIT = 0x0279,
CMSG_LF_GUILD_BROWSE = 0x0379,
CMSG_LF_GUILD_DECLINE_RECRUIT = 0x0AA5,
- CMSG_LF_GUILD_GET_APPLICATIONS = 0x02A6,
+ CMSG_LF_GUILD_GET_APPLICATIONS = 0x0A7D,
CMSG_LF_GUILD_GET_GUILD_POST = 0x1ED1,
CMSG_LF_GUILD_GET_RECRUITS = 0x1CD4,
CMSG_LF_GUILD_REMOVE_RECRUIT = 0x00BD,