-
Notifications
You must be signed in to change notification settings - Fork 51
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
Prot Paladin: Tier 1 + 2 item sets #1051
Conversation
wsphillips
commented
Sep 11, 2024
- Added the item set bonuses for Tier 1 and Tier 2
- Updated the default gear sets + tests
- Fixed an incorrect flag on Holy Shield
// ...and does not set stacks on gain... | ||
auras[i].OnGain = func(aura *core.Aura, sim *core.Simulation) { | ||
paladin.AddStatDynamic(sim, stats.Block, blockBonus) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You actually might be able to avoid this completely if you change the holy shield aura OnGain
code to be aura.SetStacks(aura.MaxStacks)
. Then setting the MaxStacks to 0 here should work hopefully? I don't know 100%
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you try to set/remove stacks when MaxStacks = 0, you throw errors.