diff options
author | Ovahlord <dreadkiller@gmx.de> | 2024-05-28 18:49:10 +0200 |
---|---|---|
committer | Ovahlord <dreadkiller@gmx.de> | 2024-05-28 18:49:10 +0200 |
commit | bf3686569199b5401bc4e7bed475ff446e42a8b2 (patch) | |
tree | 687d900f0a656b8a7231d37023d34419a9630f6f /src | |
parent | a32902d251b15fdc1e47cc7caea258a3c2665f3e (diff) |
Core/Misc: fixed a typo added in a32902d251b15fdc1e47cc7caea258a3c2665f3e - use the correct opcode value
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Server/Protocol/Opcodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Server/Protocol/Opcodes.h b/src/server/game/Server/Protocol/Opcodes.h index 42f2ebadd56..e5d11df94db 100644 --- a/src/server/game/Server/Protocol/Opcodes.h +++ b/src/server/game/Server/Protocol/Opcodes.h @@ -41,7 +41,7 @@ constexpr std::size_t MAX_CMSG_OPCODE_NUMBER = 0x5036; constexpr std::size_t NUM_CMSG_OPCODES = MAX_CMSG_OPCODE_NUMBER - MIN_CMSG_OPCODE_NUMBER + 1; constexpr std::size_t MIN_SMSG_OPCODE_NUMBER = 0x256C; -constexpr std::size_t MAX_SMSG_OPCODE_NUMBER = 0x3051; +constexpr std::size_t MAX_SMSG_OPCODE_NUMBER = 0x3052; constexpr std::size_t NUM_SMSG_OPCODES = MAX_SMSG_OPCODE_NUMBER - MIN_SMSG_OPCODE_NUMBER + 1; constexpr uint16 UNKNOWN_OPCODE = 0xBADD; // special marker value for uninitialized WorldPackets |