Skip to content

Commit

Permalink
Network: Add missing opcodes to opcode table
Browse files Browse the repository at this point in the history
  • Loading branch information
Exxenoz authored and killerwife committed Apr 6, 2024
1 parent 10b7680 commit 27c74ff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/game/Server/Opcodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,8 @@ OpcodeHandler opcodeTable[NUM_MSG_TYPES] =
/*0x1FC*/ { "SMSG_ENVIRONMENTALDAMAGELOG", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_ServerSide},
/*0x1FD*/ { "CMSG_RWHOIS_OBSOLETE", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_NULL},
/*0x1FE*/ { "SMSG_RWHOIS", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_ServerSide},
/*0x1FF*/ { "MSG_LOOKING_FOR_GROUP", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_NULL },
/*0x200*/ { "CMSG_SET_LOOKING_FOR_GROUP", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_NULL },
/*0x201*/ { "CMSG_UNLEARN_SPELL", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_NULL},
/*0x202*/ { "CMSG_UNLEARN_SKILL", STATUS_LOGGEDIN, PROCESS_THREADUNSAFE, &WorldSession::HandleUnlearnSkillOpcode},
/*0x203*/ { "SMSG_REMOVED_SPELL", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_ServerSide},
Expand Down Expand Up @@ -850,5 +852,5 @@ OpcodeHandler opcodeTable[NUM_MSG_TYPES] =
/*0x338*/ { "SMSG_CHARACTER_PROFILE", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_ServerSide},
/*0x339*/ { "SMSG_CHARACTER_PROFILE_REALM_CONNECTED", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_ServerSide},
/*0x33A*/ { "SMSG_UNK", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_ServerSide},
/*0x33A*/ { "SMSG_DEFENSE_MESSAGE", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_ServerSide},
/*0x33B*/ { "SMSG_DEFENSE_MESSAGE", STATUS_NEVER, PROCESS_INPLACE, &WorldSession::Handle_ServerSide},
};

0 comments on commit 27c74ff

Please sign in to comment.