View Single Post
03/14/16, 03:10 PM   #13
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 578
Originally Posted by Wandamey View Post
The error when you link is not from the addons.
It's the same cause, but we can't do anything about it on our own.

Just wait and avoid linking from the gear crafting stations

Edit: well maybe we could rewrite the function in cause in a mini-patch


try to paste this at the top of any addon main .lua file (!!only once, or better, wait for the patch addon to be updated... maybe with a link here soon)

Code:
local OrgZO_LinkHandler_CreateChatLink = ZO_LinkHandler_CreateChatLink
ZO_LinkHandler_CreateChatLink = function(linkFunction,...) 
			if linkFunction == GetSmithingPatternResultLink then 
			  pat,mat,qtt,style,trait = ...
			  return GetSmithingPatternResultLink(pat,mat,qtt,style,trait,LINK_STYLE_BRACKETS)
			end
			return OrgZO_LinkHandler_CreateChatLink(linkFunction,...)
			end
seems to work for the station and and items in the bag. should be OK
I added this fix in here merBandAidZouiFixes.zip
  Reply With Quote