View Single Post
02/25/16, 06:00 AM   #3
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
Looks like your savedata got corrupted.
You can try to edit MasterMerchant.lua in the addon directory and modify InitPurchaseHistory (line 2749) to look like this:
Lua Code:
  1. local item = dataList['sales'][i]
  2. if(item.guild) then -- add this
  3.    self.guildPurchases[item.guild] = self.guildPurchases[item.guild] or MMGuild:new(item.guild)
  4.    local guild = self.guildPurchases[item.guild]
  5.    guild:addSaleByDate(item.buyer, item['timestamp'], item.price, item.quant, item.wasKiosk, false)
  6. end -- and this
or if it doesn't help delete all master merchant related save data (SavedVariables/MasterMerchant.lua and all MMxxData.lua).
Either way you will loose parts or all of your trade history and it will have to regenerate it.

Last edited by sirinsidiator : 02/25/16 at 06:02 AM.
  Reply With Quote