Send CMSG_LOOT_MONEY for online gold looting and replace action bar right-click removal with drag-to-ground

This commit is contained in:
Kelsi 2026-02-06 19:24:44 -08:00
parent affb5f4f04
commit 0a26eef154
5 changed files with 67 additions and 12 deletions

View file

@ -1928,6 +1928,11 @@ network::Packet AutoEquipItemPacket::build(uint8_t srcBag, uint8_t srcSlot) {
return packet;
}
network::Packet LootMoneyPacket::build() {
network::Packet packet(static_cast<uint16_t>(Opcode::CMSG_LOOT_MONEY));
return packet;
}
network::Packet LootReleasePacket::build(uint64_t lootGuid) {
network::Packet packet(static_cast<uint16_t>(Opcode::CMSG_LOOT_RELEASE));
packet.writeUInt64(lootGuid);