Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing opcodes for 11.0.7 #922

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions WowPacketParser/Enums/Opcode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -646,6 +646,7 @@ public enum Opcode
CMSG_GUILD_NEWS_UPDATE_STICKY,
CMSG_GUILD_OFFICER_REMOVE_MEMBER,
CMSG_GUILD_PERMISSIONS_QUERY,
CMSG_REQUEST_PLUNDER_CURRENCY_DATA_FOR_ACCOUNT_CHARACTERS,
CMSG_GUILD_PROMOTE_MEMBER,
CMSG_GUILD_QUERY_MEMBERS_FOR_RECIPE,
CMSG_GUILD_QUERY_MEMBER_RECIPES,
Expand Down Expand Up @@ -3394,6 +3395,7 @@ public enum Opcode
SMSG_UPDATE_INSTANCE_OWNERSHIP,
SMSG_UPDATE_LAST_INSTANCE,
SMSG_UPDATE_OBJECT,
SMSG_BATTLE_PAY_DELIVERABLE_DELIVERED,
SMSG_UPDATE_PET_TALENT_DATA,
SMSG_UPDATE_PRIMARY_SPEC,
SMSG_UPDATE_RECENT_PLAYER_GUIDS,
Expand Down
2 changes: 2 additions & 0 deletions WowPacketParser/Enums/Version/V11_0_7_58123/Opcodes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,7 @@ public static BiDictionary<Opcode, int> Opcodes(Direction direction)
{ Opcode.CMSG_REQUEST_COVENANT_CALLINGS, 0x30025E },
{ Opcode.CMSG_REQUEST_CROWD_CONTROL_SPELL, 0x3100C9 },
{ Opcode.CMSG_REQUEST_CURRENCY_DATA_FOR_ACCOUNT_CHARACTERS, 0x2A0018 },
{ Opcode.CMSG_REQUEST_PLUNDER_CURRENCY_DATA_FOR_ACCOUNT_CHARACTERS, 0x2A0019 },
{ Opcode.CMSG_REQUEST_GARRISON_TALENT_WORLD_QUEST_UNLOCKS, 0x300297 },
{ Opcode.CMSG_REQUEST_GUILD_PARTY_STATE, 0x300052 },
{ Opcode.CMSG_REQUEST_GUILD_REWARDS_LIST, 0x300051 },
Expand Down Expand Up @@ -2076,6 +2077,7 @@ public static BiDictionary<Opcode, int> Opcodes(Direction direction)
{ Opcode.SMSG_UPDATE_INSTANCE_OWNERSHIP, 0x370142 },
{ Opcode.SMSG_UPDATE_LAST_INSTANCE, 0x370121 },
{ Opcode.SMSG_UPDATE_OBJECT, 0x470000 },
{ Opcode.SMSG_BATTLE_PAY_DELIVERABLE_DELIVERED, 0x370211 },
{ Opcode.SMSG_UPDATE_PRIMARY_SPEC, 0x37006F },
{ Opcode.SMSG_UPDATE_RECENT_PLAYER_GUIDS, 0x37008C },
{ Opcode.SMSG_UPDATE_TALENT_DATA, 0x37006E },
Expand Down