Mercurial > wow > reaction
changeset 178:2e2abdaad2e5
refix shadow dance and demon form states
author | Flick <flickerstreak@gmail.com> |
---|---|
date | Wed, 20 Oct 2010 18:58:36 +0000 |
parents | 5c01c0d3bf79 |
children | bf64e71701e2 |
files | classes/Bar.lua modules/State.lua |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/classes/Bar.lua Wed Oct 20 18:30:24 2010 +0000 +++ b/classes/Bar.lua Wed Oct 20 18:58:36 2010 +0000 @@ -734,8 +734,8 @@ cat = { format = "form:3", filter = ClassFilter("DRUID") }, tree = { format = "form:5", filter = ClassFilter("DRUID") }, moonkin = { format = "form:5", filter = ClassFilter("DRUID") }, - demon = { format = "bonusbar:1", filter = ClassFilter("WARLOCK") }, - nodemon = { format = "nobonusbar:1", filter = ClassFilter("WARLOCK") }, + demon = { format = "form:2", filter = ClassFilter("WARLOCK") }, + nodemon = { format = "noform", filter = ClassFilter("WARLOCK") }, pet = { format = "pet" }, nopet = { format = "nopet" }, harm = { format = "@target,harm" },
--- a/modules/State.lua Wed Oct 20 18:30:24 2010 +0000 +++ b/modules/State.lua Wed Oct 20 18:58:36 2010 +0000 @@ -164,7 +164,7 @@ -- rule fields { "stance", { {battle = L["Battle Stance"]}, {defensive = L["Defensive Stance"]}, {berserker = L["Berserker Stance"]} } }, { "form", { {caster = L["Caster Form"]}, {bear = L["Bear Form"]}, {cat = L["Cat Form"]}, {tree = L["Tree of Life"]}, {moonkin = L["Moonkin Form"]} } }, - { "stealth", { {stealth = L["Stealth"]}, {nostealth = L["No Stealth"]} }, {shadowdance = L["Shadow Dance"]} }, + { "stealth", { {stealth = L["Stealth"]}, {nostealth = L["No Stealth"]}, {shadowdance = L["Shadow Dance"]} } }, { "shadow", { {shadowform = L["Shadowform"]}, {noshadowform = L["No Shadowform"]} } }, { "demon", { {demon = L["Demon Form"]}, {nodemon = L["No Demon Form"]} } }, { "pet", { {pet = L["With Pet"]}, {nopet = L["Without Pet"]} } },