Compare commits

..

2 Commits

Author SHA1 Message Date
kadeshar
92f1dbd3f1
Merge pull request #1626 from liyunfan1223/opcode-crash
Sell item opcode crash fix
2025-09-11 15:04:25 +02:00
Yunfan Li
f5f4f32799 Sell item packet opcode 2025-09-11 20:43:57 +08:00

View File

@ -115,7 +115,7 @@ void SellAction::Sell(Item* item)
uint32 botMoney = bot->GetMoney();
WorldPacket p;
WorldPacket p(CMSG_SELL_ITEM);
p << vendorguid << itemguid << count;
WorldPackets::Item::SellItem nicePacket(std::move(p));