diff options
author | Ovahlord <dreadkiller@gmx.de> | 2024-08-04 16:54:13 +0200 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2024-08-04 16:54:13 +0200 |
commit | 93242b38b38a72a0bec24f94aea599a7cda117e8 (patch) | |
tree | 13abc176768927f0152c178429ddb851c26af179 | |
parent | 84b16b38c5948409e69aaf99305b346d890c2feb (diff) |
Core/Packets: fixed swapped opcode values of SMSG_TAXI_NODE_STATUS and SMSG_VOICE_LOGIN_RESPONSE
-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 59854d61de4..6949e1e4f7a 100644 --- a/src/server/game/Server/Protocol/Opcodes.h +++ b/src/server/game/Server/Protocol/Opcodes.h @@ -1766,7 +1766,7 @@ enum OpcodeServer : uint16 SMSG_SYNC_WOW_ENTITLEMENTS = 0x286D, SMSG_TALENTS_INVOLUNTARILY_RESET = 0x271B, SMSG_TALENT_GROUP_ROLE_CHANGED = 0x258D, - SMSG_TAXI_NODE_STATUS = 0x2821, + SMSG_TAXI_NODE_STATUS = 0x2680, SMSG_TEXT_EMOTE = 0x267E, SMSG_THREAT_CLEAR = 0x26E0, SMSG_THREAT_REMOVE = 0x26DF, @@ -1823,7 +1823,7 @@ enum OpcodeServer : uint16 SMSG_VIGNETTE_UPDATE = 0x3008, SMSG_VOICE_CHANNEL_INFO_RESPONSE = 0x2682, SMSG_VOICE_CHANNEL_STT_TOKEN_RESPONSE = 0x2681, - SMSG_VOICE_LOGIN_RESPONSE = 0x2680, + SMSG_VOICE_LOGIN_RESPONSE = 0x2821, SMSG_VOID_ITEM_SWAP_RESPONSE = 0x2DA4, SMSG_VOID_STORAGE_CONTENTS = 0x2DA1, SMSG_VOID_STORAGE_FAILED = 0x2DA0, |