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

Add new 4pc TAQ ret bonus and fix Sheath #1182

Merged
merged 1 commit into from
Nov 27, 2024

Conversation

Adamrch
Copy link
Contributor

@Adamrch Adamrch commented Nov 26, 2024

Add new 4pc TAQ ret bonus
fix sheathe of light to not be fully dynamic (updates on anything that has proc mask melee)

Comment on lines +467 to +468
exorcism.DamageMultiplierAdditive -= 0.4 * float64(oldStacks)
exorcism.DamageMultiplierAdditive += 0.4 * float64(newStacks)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
exorcism.DamageMultiplierAdditive -= 0.4 * float64(oldStacks)
exorcism.DamageMultiplierAdditive += 0.4 * float64(newStacks)
exorcism.DamageMultiplierAdditive += 0.4 * float64(newStacks - oldStacks)

Comment on lines +485 to +487
if !taq4pcAura.IsActive() {
taq4pcAura.Activate(sim)
}
Copy link
Collaborator

@kayla-glick kayla-glick Nov 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Usually these kinds of effects will refresh every time, so you wouldn't want to make the Activate conditional

Comment on lines +470 to +472
if newStacks == 0 {
aura.Activate(sim)
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why activate the aura when it hits zero stacks?

@kayla-glick kayla-glick merged commit 005aa74 into wowsims:master Nov 27, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants