mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 13:16:39 +00:00
Going to start work on SerializingItems for bulk inv sends
This commit is contained in:
@@ -820,8 +820,9 @@ void Client::BulkSendInventoryItems() {
|
||||
return;
|
||||
}
|
||||
|
||||
EQApplicationPacket* outapp = new EQApplicationPacket(OP_CharInventory, items.Size());
|
||||
memcpy(outapp->pBuffer, items, items.Size());
|
||||
EQApplicationPacket outapp(OP_CharInventory, items.Size());
|
||||
memcpy(outapp.pBuffer, items, items.Size());
|
||||
QueuePacket(&outapp);
|
||||
|
||||
|
||||
//int16 slot_id = 0;
|
||||
|
||||
Reference in New Issue
Block a user