diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index f6d3595b15..9317fff000 100755 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -1948,10 +1948,7 @@ c["30% increased Daze Buildup"]={{}," Daze Buildup "} c["30% increased Daze Buildup with Quarterstaves"]={{}," Daze Buildup "} c["30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves"]={{}," Daze Buildup 30% increased Freeze Buildup with Quarterstaves "} c["30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves"]={{}," Daze Buildup 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves "} -c["30% increased Defences while wielding a Quarterstaff"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=30}}," while wielding a Quarterstaff "} -c["30% increased Defences while wielding a Quarterstaff 30% increased Daze Buildup with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="Defences",type="INC",value=30}}," while wielding a Quarterstaff 30% increased Daze Buildup "} -c["30% increased Defences while wielding a Quarterstaff 30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="Defences",type="INC",value=30}}," while wielding a Quarterstaff 30% increased Daze Buildup 30% increased Freeze Buildup with Quarterstaves "} -c["30% increased Defences while wielding a Quarterstaff 30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="Defences",type="INC",value=30}}," while wielding a Quarterstaff 30% increased Daze Buildup 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves "} +c["30% increased Defences while wielding a Quarterstaff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="Defences",type="INC",value=30}},nil} c["30% increased Electrocute Buildup"]={{}," Electrocute Buildup "} c["30% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=30}},nil} c["30% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil} diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 61ef8ef791..6902227a35 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -1541,6 +1541,7 @@ local modTagList = { ["while wielding a claw or dagger"] = { tag = { type = "Condition", varList = { "UsingClaw", "UsingDagger" } } }, ["while wielding a mace"] = { tag = { type = "Condition", var = "UsingMace" } }, ["while wielding a staff"] = { tag = { type = "Condition", var = "UsingStaff" } }, + ["while wielding a quarterstaff"] = { tag = { type = "Condition", var = "UsingStaff" } }, ["while wielding a sword"] = { tag = { type = "Condition", var = "UsingSword" } }, ["while wielding a melee weapon"] = { tag = { type = "Condition", var = "UsingMeleeWeapon" } }, ["while wielding a one handed weapon"] = { tag = { type = "Condition", var = "UsingOneHandedWeapon" } },