Skip to content

Commit 096db47

Browse files
authored
Fix banner valour config and tree nodes (#1048)
1 parent ad56281 commit 096db47

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Data/ModCache.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3465,7 +3465,7 @@ c["Aura Skills have 5% increased Magnitudes"]={{}," Magnitudes "}
34653465
c["Aura Skills have 6% increased Magnitudes"]={{}," Magnitudes "}
34663466
c["Auras from your Skills can only affect you"]={{[1]={flags=0,keywordFlags=0,name="SelfAurasOnlyAffectYou",type="FLAG",value=true}},nil}
34673467
c["Banner Buffs linger on you for 4 seconds after you leave the Area"]={nil,"Banner Buffs linger on you for 4 seconds after you leave the Area "}
3468-
c["Banner Skills have 12% increased Aura Magnitudes"]={{}," Aura Magnitudes "}
3468+
c["Banner Skills have 12% increased Aura Magnitudes"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=12}},nil}
34693469
c["Banner Skills have 15% increased Area of Effect"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=15}},nil}
34703470
c["Banner Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil}
34713471
c["Banner Skills have 20% increased Duration"]={{[1]={[1]={skillType=88,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil}

src/Modules/ConfigOptions.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ local configSettings = {
228228
modList:NewMod("Condition:BannerPlanted", "FLAG", true, "Config")
229229
end },
230230
{ var = "bannerValour", type = "count", label = "Banner Valour:", tooltip = "The amount of valour consumed for the placed banner", ifSkill = { "Dread Banner", "War Banner", "Defiance Banner" }, apply = function(val, modList, enemyModList)
231-
modList:NewMod("Multiplier:ValourStacks", "BASE", m_min(val, 50), "Config", { type = "IgnoreCond" }, { type = "Condition", var = "Combat" })
231+
modList:NewMod("Multiplier:ValourStacks", "BASE", val, "Config", { type = "IgnoreCond" }, { type = "Condition", var = "Combat" })
232232
end },
233233
{ label = "Barkskin:", ifSkill = "Barkskin" },
234234
{ var = "barkskinStacks", type = "count", label = "# of Barkskin Stacks:", ifSkill = "Barkskin", apply = function(val, modList, enemyModList)

src/Modules/ModParser.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -774,6 +774,7 @@ local modNameList = {
774774
["bleeding duration on you"] = "SelfBleedDuration",
775775
["to blind enemies on hit"] = { "BlindChance" },
776776
["curse magnitudes"] = { "CurseEffect" },
777+
["aura magnitudes"] = { "AuraEffect" },
777778
-- Misc modifiers
778779
["movement speed"] = "MovementSpeed",
779780
["attack, cast and movement speed"] = { "Speed", "MovementSpeed" },

0 commit comments

Comments
 (0)