This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
It is helpful for users writing lua scripts and other advanced macros to be able to change Quartz profiles via direct function call. For example:
Quartz3.db:SetProfile("Heal Spec")
There is only one line of code in the current Quartz3 addon which is preventing this function call:
local Quartz3 = LibStub("AceAddon-3.0"):NewAddon("Quartz3", "AceConsole-3.0")
If you remove the "local" bit, other lua scripts are able to call the SetProfile function.
Quartz3 = LibStub("AceAddon-3.0"):NewAddon("Quartz3", "AceConsole-3.0")
Do you think you could implement this change in the next patch?
Thanks.
LibStub("AceAddon-3.0"):GetAddon("Quartz3").db:SetProfile("Heal Spec")
To post a comment, please login or register a new account.