Skip to content

Commit

Permalink
Merge pull request WoWAnalyzer#6058 from awiss/df-ww-fae-apl-tweak
Browse files Browse the repository at this point in the history
(WW): Remove pandemic window from Faeline Stomp APL
  • Loading branch information
emallson authored May 10, 2023
2 parents ac92e10 + a64925b commit 1ae8fdd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
1 change: 1 addition & 0 deletions src/analysis/retail/monk/windwalker/CHANGELOG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Durpn, Hursti, Tenooki } from 'CONTRIBUTORS';
import { SpellLink } from 'interface';

export default [
change(date(2023, 5, 9), <>Adjusted Faeline Stomp in APL</>, Tenooki),
change(date(2023, 5, 3), <>Updated Serenity/Non-Serenity APls, cooldown/ability tracking improvements</>, Tenooki),
change(date(2023, 5, 3), <>Fixes to cooldown tracking on various abilities</>, Tenooki),
change(date(2023, 5, 2), <>Fixed a bug in WW reports with Chi Wave talented</>, Tenooki),
Expand Down
6 changes: 3 additions & 3 deletions src/analysis/retail/monk/windwalker/CONFIG.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Durpn } from 'CONTRIBUTORS';
import { Durpn, Tenooki } from 'CONTRIBUTORS';
import Expansion from 'game/Expansion';
import SPECS from 'game/SPECS';
import Config from 'parser/Config';
Expand All @@ -7,10 +7,10 @@ import CHANGELOG from './CHANGELOG';

const config: Config = {
// The people that have contributed to this spec recently. People don't have to sign up to be long-time maintainers to be included in this list. If someone built a large part of the spec or contributed something recently to that spec, they can be added to the contributors list. If someone goes MIA, they may be removed after major changes or during a new expansion.
contributors: [Durpn],
contributors: [Durpn, Tenooki],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: null,
patchCompatibility: '10.1.0',
isPartial: true,
// Explain the status of this spec's analysis here. Try to mention how complete it is, and perhaps show links to places users can learn more.
// If this spec's analysis does not show a complete picture please mention this in the `<Warning>` component.
Expand Down
6 changes: 1 addition & 5 deletions src/analysis/retail/monk/windwalker/modules/apl/AplCheck.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@ const andNotSerenity = (cond: Condition<any>) => {

const needsFaelineHarmony = and(
hasTalent(TALENTS.FAELINE_HARMONY_TALENT),
buffMissing(SPELLS.FAELINE_HARMONY_BUFF, {
duration: 10000,
timeRemaining: 2000,
pandemicCap: 1,
}),
buffMissing(SPELLS.FAELINE_HARMONY_BUFF),
);

inSerenity.describe = (tense) => '';
Expand Down

0 comments on commit 1ae8fdd

Please sign in to comment.