From 2ba170481862eef6a3a389642ad1cf01917a8e4a Mon Sep 17 00:00:00 2001 From: Pawel Date: Fri, 1 Apr 2016 22:10:59 +0200 Subject: [PATCH] v1.4.1 - interface fix, template fix --- Modules/module.lua.template | 15 ++++++--------- TDDps.toc | 4 ++-- 2 files changed, 8 insertions(+), 11 deletions(-) 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 -- 1.7.9.5