From 2763fe36a34d8686a6650009e3b2c09fab8172de Mon Sep 17 00:00:00 2001 From: Russell Kinasz Date: Sat, 31 Jan 2015 11:17:28 -0800 Subject: [PATCH] RoF+ can send 200 items in merchantlist --- zone/client_process.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zone/client_process.cpp b/zone/client_process.cpp index 57a8c0eeb..bddc874c2 100644 --- a/zone/client_process.cpp +++ b/zone/client_process.cpp @@ -960,9 +960,9 @@ void Client::BulkSendInventoryItems() void Client::BulkSendMerchantInventory(int merchant_id, int npcid) { const Item_Struct* handyitem = nullptr; uint32 numItemSlots = 80; //The max number of items passed in the transaction. - if (ClientVersionBit & BIT_RoFAndLater) { // RoF+ can send 200 items - numItemSlots = 200; - } + if (ClientVersionBit & BIT_RoFAndLater) { // RoF+ can send 200 items + numItemSlots = 200; + } const Item_Struct *item; std::list merlist = zone->merchanttable[merchant_id]; std::list::const_iterator itr;