There was an error while loading. Please reload this page.
1 parent 149eb43 commit 0c736c9Copy full SHA for 0c736c9
1 file changed
internal/characters/traveler/common/pyro/skill.go
@@ -218,9 +218,8 @@ func (c *Traveler) scorchingThresholdOnDamage() {
218
if !c.StatusIsActive(scoringThresholdKey) {
219
return false
220
}
221
- // ignore EC, hydro swirl, and burning damage
222
- // this clause is here since these damage types are sourced to the target rather than character
223
- if ae.Info.AttackTag == attacks.AttackTagECDamage || ae.Info.AttackTag == attacks.AttackTagBurningDamage ||
+ // ignore burning damage
+ if ae.Info.AttackTag == attacks.AttackTagBurningDamage ||
224
ae.Info.AttackTag == attacks.AttackTagSwirlHydro {
225
226
0 commit comments