Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reign procs similarly to fetish #3783

Merged
merged 2 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sim/common/wotlk/capacitors.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func init() {
MaxStacks: 3,
Trigger: core.ProcTrigger{
Callback: core.CallbackOnSpellHitDealt,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc,
Outcome: core.OutcomeCrit,
ICD: time.Millisecond * 2000,
ActionID: core.ActionID{ItemID: 47182},
Expand All @@ -116,7 +116,7 @@ func init() {
MaxStacks: 3,
Trigger: core.ProcTrigger{
Callback: core.CallbackOnSpellHitDealt,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc,
Outcome: core.OutcomeCrit,
ICD: time.Millisecond * 2000,
ActionID: core.ActionID{ItemID: 47188},
Expand All @@ -134,7 +134,7 @@ func init() {
MaxStacks: 3,
Trigger: core.ProcTrigger{
Callback: core.CallbackOnSpellHitDealt,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc,
Outcome: core.OutcomeCrit,
ICD: time.Millisecond * 2000,
ActionID: core.ActionID{ItemID: 47316},
Expand All @@ -149,7 +149,7 @@ func init() {
MaxStacks: 3,
Trigger: core.ProcTrigger{
Callback: core.CallbackOnSpellHitDealt,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc,
ProcMask: core.ProcMaskSpellOrProc | core.ProcMaskWeaponProc | core.ProcMaskSuppressedProc,
Outcome: core.OutcomeCrit,
ICD: time.Millisecond * 2000,
ActionID: core.ActionID{ItemID: 47477},
Expand Down
32 changes: 16 additions & 16 deletions sim/druid/balance/TestBalance.results
Original file line number Diff line number Diff line change
Expand Up @@ -676,15 +676,15 @@ dps_results: {
dps_results: {
key: "TestBalance-AllItems-ReignoftheDead-47316"
value: {
dps: 7992.61762
tps: 7768.9
dps: 7960.33563
tps: 7734.31848
}
}
dps_results: {
key: "TestBalance-AllItems-ReignoftheDead-47477"
value: {
dps: 8049.3996
tps: 7824.82169
dps: 8020.19528
tps: 7793.31784
}
}
dps_results: {
Expand Down Expand Up @@ -1075,43 +1075,43 @@ dps_results: {
dps_results: {
key: "TestBalance-Settings-Tauren-P3-Default-Default-FullBuffs-LongMultiTarget"
value: {
dps: 16136.17325
tps: 18650.71165
dps: 16073.78456
tps: 18564.73994
}
}
dps_results: {
key: "TestBalance-Settings-Tauren-P3-Default-Default-FullBuffs-LongSingleTarget"
value: {
dps: 11200.4262
tps: 10947.10608
dps: 11292.18427
tps: 11038.94976
}
}
dps_results: {
key: "TestBalance-Settings-Tauren-P3-Default-Default-FullBuffs-ShortSingleTarget"
value: {
dps: 12556.82382
tps: 11595.47864
dps: 12502.93599
tps: 11540.33889
}
}
dps_results: {
key: "TestBalance-Settings-Tauren-P3-Default-Default-NoBuffs-LongMultiTarget"
value: {
dps: 6865.06276
tps: 7823.12192
dps: 7036.35002
tps: 8043.58253
}
}
dps_results: {
key: "TestBalance-Settings-Tauren-P3-Default-Default-NoBuffs-LongSingleTarget"
value: {
dps: 4992.11128
tps: 4894.80223
dps: 5048.77489
tps: 4952.3195
}
}
dps_results: {
key: "TestBalance-Settings-Tauren-P3-Default-Default-NoBuffs-ShortSingleTarget"
value: {
dps: 7853.58439
tps: 7551.48727
dps: 7882.18633
tps: 7580.73047
}
}
dps_results: {
Expand Down
Loading