View Single Post
03/14/19, 03:49 PM   #5
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
LibGarfield seems to be used to make sure that addons don't directly overwrite some shared resources and show a warning if they do. Unfortunately it seems it has a small design error and instead of showing the name of the addon at fault, it shows the name of the addon that has been loaded before that. If the first addon that gets loaded is overwriting the chat handler like in your case, it will instead show an empty string for the addon name.

So in other words, LibGarfield is there to warn about compatibility issues between your addons and LibChat3 is for authors to use so they are compatible between each other.

You can edit libGarfield.lua and try to replace "lName" with "addOnName". Then it should print which addon overwrites the chat handler.
  Reply With Quote