Skip to content

Commit

Permalink
Merge pull request #735 from k0l11/fix-albedo-e
Browse files Browse the repository at this point in the history
fix albedo e icd hitlag
  • Loading branch information
shizukayuki authored Aug 14, 2022
2 parents 0a300a7 + 31c64af commit 349254d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/characters/albedo/skill.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ func (c *char) skillHook() {
return false
}

c.AddStatus(skillICDKey, 120, true) //proc every 2 s
// this ICD is most likely tied to the construct, so it's not hitlag extendable
c.AddStatus(skillICDKey, 120, false) // proc every 2s

snap := c.skillSnapshot

Expand Down

0 comments on commit 349254d

Please sign in to comment.