v1.4.1 - interface fix, template fix
Pawel [04-01-16 - 20:10]
v1.4.1 - interface fix, template fix
diff --git a/Modules/module.lua.template b/Modules/module.lua.template
index ea3c775..fa5ac09 100644
--- a/Modules/module.lua.template
+++ b/Modules/module.lua.template
@@ -2,22 +2,19 @@
-- Create Date : 13:03 2015-04-20
-- Spells
-local _Spell = 23881;
+local _Spell = 23881;
-- Auras
-local _Aura = 12880;
+local _Aura = 12880;
-- Talents
local _isTalent = false;
--- Flags for glow independent
-local _FlagHigh = false;
-
----------------------------------------------
-- Pre enable, checking talents
----------------------------------------------
TDDps_[Class]_CheckTalents = function()
- _isTalent = TDTalentEnabled('Talent Name');
+ _isTalent = TD_TalentEnabled('Talent Name');
-- other checking functions
end
@@ -44,7 +41,7 @@ end
-- Main rotation: [Spec1]
----------------------------------------------
TDDps_[Class]_[Spec1] = function()
- local timeShift, currentSpell, gcd = TD_EndCast();
+ local timeShift, currentSpell = TD_EndCast();
return _Spell;
end
@@ -53,7 +50,7 @@ end
-- Main rotation: [Spec2]
----------------------------------------------
TDDps_[Class]_[Spec2] = function()
- local timeShift, currentSpell, gcd = TD_EndCast();
+ local timeShift, currentSpell = TD_EndCast();
return _Spell;
end
@@ -62,7 +59,7 @@ end
-- Main rotation: [Spec3]
----------------------------------------------
TDDps_[Class]_[Spec3] = function()
- local timeShift, currentSpell, gcd = TD_EndCast();
+ local timeShift, currentSpell = TD_EndCast();
return _Spell;
end
\ No newline at end of file
diff --git a/TDDps.toc b/TDDps.toc
index 46e886c..65622c2 100644
--- a/TDDps.toc
+++ b/TDDps.toc
@@ -1,8 +1,8 @@
## Title: TDDps
## Notes: Rotation helper framework.
-## Version: 1.4
+## Version: 1.4.1
## Author: Kaminari
-## Interface: 62000
+## Interface: 60200
## SavedVariables: TDDps_Options
Libs\LibStub\LibStub.lua