Skip to content

Commit

Permalink
[Core/Packet] Fix SMSG_CANCEL_COMBAT opcode and Level-up sound on tel…
Browse files Browse the repository at this point in the history
…eport fix (#356)

* Level-up sound on teleport temporary fix

* no more level-up sound on teleport (x64 client)

* no more "created" message in chat on teleport (x64 client)

* SMSG_CANCEL_COMBAT probably has wrong opcode

* Level-up sound on teleport fix

* no more level-up sound on teleport (x64 client)

* no more "created" message in chat on teleport (x64 client)

* SMSG_READ_ITEM_RESULT_FAILED probably has wrong opcode

* SMSG_READ_ITEM_RESULT_FAILED : wrong opcode

---------

Co-authored-by: 3nei <[email protected]>
  • Loading branch information
3nei and 3nei authored Oct 7, 2024
1 parent a0cf8b2 commit b12c4f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/game/Server/Protocol/Opcodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ enum OpcodeServer : uint16
SMSG_CALENDAR_SEND_EVENT = 0x12AE,
SMSG_CALENDAR_SEND_NUM_PENDING = 0x0A3F,
SMSG_CANCEL_AUTO_REPEAT = 0x1E0F,
SMSG_CANCEL_COMBAT = 0x0534,
SMSG_CANCEL_COMBAT = 0x0E8B,
SMSG_CANCEL_SCENE = 0x120E,
SMSG_CAST_FAILED = 0x143A,
SMSG_CHALLENGE_MODE_ALL_MAP_STATS = 0x11C2,
Expand Down Expand Up @@ -1013,7 +1013,7 @@ enum OpcodeServer : uint16
SMSG_RANDOM_ROLL = 0x141A,
SMSG_RANDOMIZE_CHAR_NAME = 0x169F,
SMSG_READ_ITEM_RESULT_OK = 0x0305,
SMSG_READ_ITEM_RESULT_FAILED = 0x0E8B,
SMSG_READ_ITEM_RESULT_FAILED = 0x0000, // @TODO
SMSG_REALM_SPLIT = 0x1A2E,
SMSG_RECEIVED_MAIL = 0x182B,
SMSG_REFER_A_FRIEND_EXPIRED = 0x1143,
Expand Down

0 comments on commit b12c4f0

Please sign in to comment.