Skip to content

Commit

Permalink
Merge pull request #1268 from hillerstorm/glyph_of_rapid_charge
Browse files Browse the repository at this point in the history
[Warrior] Add Glyph of Rapid Charge
  • Loading branch information
hillerstorm authored Dec 16, 2024
2 parents f1ad747 + 6d25e04 commit cfe54b4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sim/warrior/glyphs.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ func (warrior *Warrior) applyMajorGlyphs() {
FloatValue: -5,
})
}

if warrior.HasMajorGlyph(proto.WarriorMajorGlyph_GlyphOfRapidCharge) {
warrior.AddStaticMod(core.SpellModConfig{
ClassMask: SpellMaskCharge,
Kind: core.SpellMod_Cooldown_Flat,
TimeValue: -time.Second * 1,
})
}
}

func (warrior *Warrior) applyMinorGlyphs() {
Expand Down

0 comments on commit cfe54b4

Please sign in to comment.