View Single Post
  #1  
Old 09-21-2008, 10:38 AM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default

Fixes some merchants not displaying player sold items. Discussion: http://eqemulator.net/forums/showthread.php?t=26292

You could try changing:

client.h, around line 296:

From:
Code:
void    BulkSendMerchantInventory(int merchant_id, int16 npcid);
To:
Code:
void    BulkSendMerchantInventory(int merchant_id, int npcid);
client_process.cpp, around line 798:

From:
Code:
void Client::BulkSendMerchantInventory(int merchant_id, int16 npcid) {
To:
Code:
void Client::BulkSendMerchantInventory(int merchant_id, int npcid) {
I didn't do much testing other than putting 1 temp item on 1 merchant, so I don't know if this will break anything.

Last edited by cavedude; 09-24-2008 at 09:40 PM..
Reply With Quote