Fix chat focus and spirit healer confirm

This commit is contained in:
Kelsi 2026-02-07 21:12:54 -08:00
parent f4c3c850bc
commit ca867f5c83
5 changed files with 40 additions and 19 deletions

View file

@ -242,6 +242,7 @@ enum class Opcode : uint16_t {
// ---- Death/Respawn ----
CMSG_REPOP_REQUEST = 0x015A,
CMSG_SPIRIT_HEALER_ACTIVATE = 0x0176,
SMSG_SPIRIT_HEALER_CONFIRM = 0x0222,
// ---- Teleport / Transfer ----
MSG_MOVE_TELEPORT_ACK = 0x0C7,

View file

@ -1507,6 +1507,12 @@ public:
static network::Packet build(uint64_t npcGuid);
};
/** CMSG_QUESTGIVER_HELLO packet builder */
class QuestgiverHelloPacket {
public:
static network::Packet build(uint64_t npcGuid);
};
/** CMSG_GOSSIP_SELECT_OPTION packet builder */
class GossipSelectOptionPacket {
public: