View Single Post
12-22-18, 04:09 PM   #3
Brellison94
An Aku'mai Servant
AddOn Author - Click to view addons
Join Date: Mar 2013
Posts: 36
Originally Posted by Fizzlemizz View Post
Is it meant to be:
Code:
args.bosses.args[1]
It's a bit hard to tell without any code to associate the error with.
Here's where its at in the Options file.

Lua Code:
  1. bosses = {
  2. type = "group",
  3. name = L["Bossquotes"],
  4. desc = L["A list of bossquotes."],
  5. args = {{ type = 'execute',
  6. name = L["Generate menu!"],
  7. func = function() BossTalk:GenerateMenu() end,
  8. order = 7,
  9. icon = "Interface\\Icons\\Spell_ChargePositive",
  10. }},
  11. order = 8,
  12. },
  Reply With Quote