aboutsummaryrefslogtreecommitdiff
path: root/src/server
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2025-07-15 12:54:00 +0200
committerShauren <shauren.trinity@gmail.com>2025-07-15 12:54:00 +0200
commit3aa9a85106e8a053390ca403318f7c67d9a7d02a (patch)
tree1726d3fa4144f4c770dbdfeba3c02e9c93ff2ece /src/server
parent9cd417932d80fbf5cae06c2bad3dc6aab43c0c4b (diff)
Core/PacketIO: Add SMSG_DUEL_ARRANGED to IsInstanceOnlyOpcode
Diffstat (limited to 'src/server')
-rw-r--r--src/server/game/Server/Protocol/Opcodes.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/server/game/Server/Protocol/Opcodes.h b/src/server/game/Server/Protocol/Opcodes.h
index 60e3efdb92c..475bf20ab3e 100644
--- a/src/server/game/Server/Protocol/Opcodes.h
+++ b/src/server/game/Server/Protocol/Opcodes.h
@@ -2229,16 +2229,17 @@ constexpr bool IsInstanceOnlyOpcode(uint32 opcode)
{
switch (opcode)
{
- case SMSG_QUEST_GIVER_STATUS: // ClientQuest
- case SMSG_DUEL_REQUESTED: // Client
- case SMSG_DUEL_IN_BOUNDS: // Client
case SMSG_QUERY_TIME_RESPONSE: // Client
- case SMSG_DUEL_WINNER: // Client
- case SMSG_DUEL_COMPLETE: // Client
- case SMSG_DUEL_OUT_OF_BOUNDS: // Client
- case SMSG_ATTACK_STOP: // Client
- case SMSG_ATTACK_START: // Client
case SMSG_MOUNT_RESULT: // Client
+ case SMSG_ATTACK_START: // ClientCombat
+ case SMSG_ATTACK_STOP: // ClientCombat
+ case SMSG_DUEL_REQUESTED: // ClientCombat
+ case SMSG_DUEL_ARRANGED: // ClientCombat
+ case SMSG_DUEL_OUT_OF_BOUNDS: // ClientCombat
+ case SMSG_DUEL_IN_BOUNDS: // ClientCombat
+ case SMSG_DUEL_COMPLETE: // ClientCombat
+ case SMSG_DUEL_WINNER: // ClientCombat
+ case SMSG_QUEST_GIVER_STATUS: // ClientQuest
return true;
default:
return false;