diff options
author | Shauren <shauren.trinity@gmail.com> | 2022-05-26 20:09:04 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-05-26 20:09:04 +0200 |
commit | 67823c82c7f13f203ebb4a656af5c6f346c0c20b (patch) | |
tree | 51316bd0858196f9ce071c6a9abaf386fccb1a61 | |
parent | c6802e272b95f3604bd23ee8ba361b8d7ebf64bc (diff) |
Core/PacketIO: Swap CMSG_MOVE_SET_FACING and CMSG_MOVE_SET_FACING_HEARTBEAT
-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 cce436e0793..f8b1ab93db7 100644 --- a/src/server/game/Server/Protocol/Opcodes.h +++ b/src/server/game/Server/Protocol/Opcodes.h @@ -512,8 +512,8 @@ enum OpcodeClient : uint16 CMSG_MOVE_SET_CAN_FLY_ACK = 0x3A28, CMSG_MOVE_SET_CAN_TURN_WHILE_FALLING_ACK = 0x3A26, CMSG_MOVE_SET_COLLISION_HEIGHT_ACK = 0x3A3C, - CMSG_MOVE_SET_FACING = 0x3A09, - CMSG_MOVE_SET_FACING_HEARTBEAT = 0x3A0A, + CMSG_MOVE_SET_FACING = 0x3A0A, + CMSG_MOVE_SET_FACING_HEARTBEAT = 0x3A09, CMSG_MOVE_SET_FLY = 0x3A29, CMSG_MOVE_SET_IGNORE_MOVEMENT_FORCES_ACK = 0x3A27, CMSG_MOVE_SET_MOD_MOVEMENT_FORCE_MAGNITUDE_ACK = 0x3A43, |