View Single Post
08-19-12, 10:25 AM   #100
Meorawr
A Chromatic Dragonspawn
AddOn Author - Click to view addons
Join Date: Nov 2010
Posts: 193
Fixed the first bug. If you want to fix it locally, change line 26 in PowerAuras\Types\Triggers\Loader.lua from:
Code:
	tinsert(actionData["Stores"], class:InitialiseDataStore(params));
to
Code:
	tinsert(actionData["Stores"], class:InitialiseDataStore(params) or false);
Having trouble reproducing the second, what abilities are you testing it with? (The one you're tracking via Spell Cooldown, and the ones you're using to invoke the GCD).

Last edited by Meorawr : 08-19-12 at 10:28 AM.