We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 834ad83 commit 8b0d8e1Copy full SHA for 8b0d8e1
1 file changed
sim/monk/items.go
@@ -19,14 +19,9 @@ var ItemSetBattlegearOfTheRedCrane = core.NewItemSet(core.ItemSet{
19
},
20
4: func(agent core.Agent, setBonusAura *core.Aura) {
21
setBonusAura.AttachSpellMod(core.SpellModConfig{
22
- Kind: core.SpellMod_Custom,
+ Kind: core.SpellMod_BuffDuration_Flat,
23
ClassMask: MonkSpellEnergizingBrew,
24
- ApplyCustom: func(mod *core.SpellMod, spell *core.Spell) {
25
- spell.RelatedSelfBuff.Duration += 5 * time.Second
26
- },
27
- RemoveCustom: func(mod *core.SpellMod, spell *core.Spell) {
28
- spell.RelatedSelfBuff.Duration -= 5 * time.Second
29
+ TimeValue: 5 * time.Second,
30
}).ExposeToAPL(123150)
31
32
0 commit comments