View Single Post
12-27-17, 11:28 AM   #2
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
It would be better if you gave the actual code, but I'm going to assume that top line is near the top of the addon's file. When an addon's code loads, it is given a vararg, which is ... and it contains the addon's name and a table that is shared among all files within that addon folder.

When you used the code, you aren't getting the same code that addon is getting. Also, that addon is localizing those functions by putting them in local tables. This means that you can only change them manually in the addon's files.

It is not possible to change those functions without editing that addon's files.
  Reply With Quote