Skip to content

Commit

Permalink
FIX: combust looking for a source only in the same group (#6907)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paliak authored Dec 5, 2023
1 parent 010c6bb commit 6835690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Modules/CalcTriggers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ local configTable = {
env.player.mainSkill.infoMessage = env.player.mainSkill.activeEffect.grantedEffect.name .. " Triggered on Death"
end,
["combust"] = function(env)
return {triggerSkillCond = function(env, skill) return skill.skillTypes[SkillType.Melee] and slotMatch(env, skill) end}
return {triggerSkillCond = function(env, skill) return skill.skillTypes[SkillType.Melee] end}
end,
["prismatic burst"] = function(env)
return {triggerSkillCond = function(env, skill) return skill.skillTypes[SkillType.Attack] and slotMatch(env, skill) end}
Expand Down

0 comments on commit 6835690

Please sign in to comment.