Skip to content

Commit c6f8094

Browse files
LocalIdentityLocalIdentity
andauthored
Fix Charge Infusion not working sometimes (#654)
The effect on the buffs had a effect condition which wasn't needed and was causing issues Co-authored-by: LocalIdentity <localidentity2@gmail.com>
1 parent c8ea962 commit c6f8094

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Data/Skills/act_int.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3379,13 +3379,13 @@ skills["ChargeInfusionPlayer"] = {
33793379
statDescriptionScope = "charge_mastery",
33803380
statMap = {
33813381
["skill_charge_matery_skill_speed_+%_final_with_frenzy_charges"] = {
3382-
mod("Speed", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "FrenzyCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion", effectCond = "UseFrenzyCharges" }),
3382+
mod("Speed", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "FrenzyCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }),
33833383
},
33843384
["skill_charge_mastery_crit_chance_+%_final_with_power_charges"] = {
3385-
mod("CritChance", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "PowerCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion", effectCond = "UsePowerCharges" }),
3385+
mod("CritChance", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "PowerCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }),
33863386
},
33873387
["skill_charge_mastery_defences_+%_final_with_endurance_charges"] = {
3388-
mod("Defences", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion", effectCond = "UseEnduranceCharges" }),
3388+
mod("Defences", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }),
33893389
},
33903390
},
33913391
baseFlags = {

src/Export/Skills/act_int.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,13 +233,13 @@ statMap = {
233233
#set ChargeInfusionPlayer
234234
statMap = {
235235
["skill_charge_matery_skill_speed_+%_final_with_frenzy_charges"] = {
236-
mod("Speed", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "FrenzyCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion", effectCond = "UseFrenzyCharges" }),
236+
mod("Speed", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "FrenzyCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }),
237237
},
238238
["skill_charge_mastery_crit_chance_+%_final_with_power_charges"] = {
239-
mod("CritChance", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "PowerCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion", effectCond = "UsePowerCharges" }),
239+
mod("CritChance", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "PowerCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }),
240240
},
241241
["skill_charge_mastery_defences_+%_final_with_endurance_charges"] = {
242-
mod("Defences", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion", effectCond = "UseEnduranceCharges" }),
242+
mod("Defences", "MORE", nil, 0, 0, { type = "StatThreshold", stat = "EnduranceCharges", threshold = 1 }, { type = "GlobalEffect", effectType = "Buff", effectName = "Charge Infusion" }),
243243
},
244244
},
245245
#flags

0 commit comments

Comments
 (0)