View Single Post
03-21-13, 10:14 AM   #35
Sharparam
A Flamescale Wyrmkin
 
Sharparam's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2011
Posts: 102
What if you add some print statements to check the value of the strings? Like this:

lua Code:
  1. local function ChatlinkTooltips_ShowTip(self, linkData)
  2.     print("linkData == " .. linkData)
  3.     local linkType = strmatch(linkData, "|H(.-):")
  4.     print("linkType == " .. linkType)
  5.     if supportedType[linkType] then

What does it show from those print calls?
  Reply With Quote