Skip to content

Commit

Permalink
Merge pull request WoWAnalyzer#6688 from ToppleTheNun/patch-10.2.6
Browse files Browse the repository at this point in the history
add patch 10.2.6
  • Loading branch information
ToppleTheNun authored Mar 27, 2024
2 parents 3ce739d + 75140f7 commit 04480f8
Show file tree
Hide file tree
Showing 37 changed files with 115 additions and 243 deletions.
52 changes: 26 additions & 26 deletions e2e/report-selection.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,48 +3,48 @@ import { expect, test } from './fixtures';
test('report selection', async ({ page, homePage, fightSelectionPage }) => {
await homePage.goto();

await homePage.fillInReportInputWithCode('dFzCLcjyqMbX43KP');
await homePage.fillInReportInputWithCode('bjqrZRnNdvKPXt13');

await fightSelectionPage.expectFightSelectionHeaderToBeVisible();
await fightSelectionPage.expectUrlToHaveReportCode('dFzCLcjyqMbX43KP');
await expect(page).toHaveTitle('raid day');
await fightSelectionPage.expectUrlToHaveReportCode('bjqrZRnNdvKPXt13');
await expect(page).toHaveTitle('owl time');
});

test('fight selection', async ({ page, fightSelectionPage, playerSelectionPage }) => {
await fightSelectionPage.goto('dFzCLcjyqMbX43KP');
await fightSelectionPage.goto('bjqrZRnNdvKPXt13');

await page.getByRole('link', { name: 'Kill 3:11' }).click();
await page.getByRole('link', { name: 'Kill 8:47' }).click();

await playerSelectionPage.expectPlayerSelectionHeaderToBeVisible();
await playerSelectionPage.expectUrlToHaveReportCodeAndFight(
'dFzCLcjyqMbX43KP',
'20-Mythic+Volcoross+-+Kill+(3:11)',
'bjqrZRnNdvKPXt13',
'34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)',
);
await expect(page).toHaveTitle('Mythic Volcoross - Kill (3:11) in raid day');
await expect(page).toHaveTitle('Mythic Fyrakk the Blazing - Kill (8:47) in owl time');
});

test('player selection', async ({ page, playerSelectionPage, reportPage }) => {
await playerSelectionPage.goto('dFzCLcjyqMbX43KP', '20-Mythic+Volcoross+-+Kill+(3:11)');
await playerSelectionPage.goto('bjqrZRnNdvKPXt13', '34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)');

await page
.getByRole('link', { name: 'Toppledh Vengeance Demon Hunter Vengeance Demon Hunter 485' })
.getByRole('link', { name: 'Toppledh Vengeance Demon Hunter Vengeance Demon Hunter 488' })
.click();

await reportPage.expectBossDifficultyAndNameHeaderToBeVisible();
await reportPage.expectBossDifficultyAndNameHeaderToHaveText('MythicVolcoross');
await reportPage.expectBossDifficultyAndNameHeaderToHaveText('MythicFyrakk, the Blazing');
await reportPage.expectUrlToHave(
'dFzCLcjyqMbX43KP',
'20-Mythic+Volcoross+-+Kill+(3:11)',
'bjqrZRnNdvKPXt13',
'34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)',
'Toppledh',
);
await expect(page).toHaveTitle('Mythic Volcoross - Kill (3:11) by Toppledh in raid day');
await expect(page).toHaveTitle('Mythic Fyrakk the Blazing - Kill (8:47) by Toppledh in owl time');
});

test.describe('tab selection', () => {
test.beforeEach(async ({ reportPage }) => {
await reportPage.goto({
reportCode: 'dFzCLcjyqMbX43KP',
fightCode: '20-Mythic+Volcoross+-+Kill+(3:11)',
reportCode: 'bjqrZRnNdvKPXt13',
fightCode: '34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)',
playerName: 'Toppledh',
});
});
Expand All @@ -53,39 +53,39 @@ test.describe('tab selection', () => {
await reportPage.clickOnStatisticsTab();

await expect(page).toHaveURL(
'/report/dFzCLcjyqMbX43KP/20-Mythic+Volcoross+-+Kill+(3:11)/Toppledh/standard/statistics',
'/report/bjqrZRnNdvKPXt13/34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)/Toppledh/standard/statistics',
);
});

test('timeline', async ({ page, reportPage }) => {
await reportPage.clickOnTimelineTab();

await expect(page).toHaveURL(
'/report/dFzCLcjyqMbX43KP/20-Mythic+Volcoross+-+Kill+(3:11)/Toppledh/standard/timeline',
'/report/bjqrZRnNdvKPXt13/34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)/Toppledh/standard/timeline',
);
});

test('cooldowns', async ({ page, reportPage }) => {
await reportPage.clickOnCooldownsTab();

await expect(page).toHaveURL(
'/report/dFzCLcjyqMbX43KP/20-Mythic+Volcoross+-+Kill+(3:11)/Toppledh/standard/cooldowns',
'/report/bjqrZRnNdvKPXt13/34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)/Toppledh/standard/cooldowns',
);
});

test('character', async ({ page, reportPage }) => {
await reportPage.clickOnCharacterTab();

await expect(page).toHaveURL(
'/report/dFzCLcjyqMbX43KP/20-Mythic+Volcoross+-+Kill+(3:11)/Toppledh/standard/character',
'/report/bjqrZRnNdvKPXt13/34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)/Toppledh/standard/character',
);
});

test('about', async ({ page, reportPage }) => {
await reportPage.clickOnAboutTab('Vengeance Demon Hunter');

await expect(page).toHaveURL(
'/report/dFzCLcjyqMbX43KP/20-Mythic+Volcoross+-+Kill+(3:11)/Toppledh/standard/about',
'/report/bjqrZRnNdvKPXt13/34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)/Toppledh/standard/about',
);
});
});
Expand All @@ -96,16 +96,16 @@ test('perform analysis', async ({ page }) => {
await page.getByPlaceholder('https://www.warcraftlogs.com/reports/<report code>').click();
await page
.getByPlaceholder('https://www.warcraftlogs.com/reports/<report code>')
.fill('https://www.warcraftlogs.com/reports/dFzCLcjyqMbX43KP');
.fill('https://www.warcraftlogs.com/reports/bjqrZRnNdvKPXt13');
await page.getByRole('heading', { name: 'Fight selection' }).waitFor();
await page.getByRole('link', { name: 'Kill 3:11' }).click();
await page.getByRole('link', { name: 'Kill 8:47' }).click();
await page.getByRole('heading', { name: 'Player selection' }).waitFor();
await page
.getByRole('link', { name: 'Toppledh Vengeance Demon Hunter Vengeance Demon Hunter 485' })
.getByRole('link', { name: 'Toppledh Vengeance Demon Hunter Vengeance Demon Hunter 488' })
.click();
await page.getByText('MythicVolcoross').waitFor();
await page.getByText('MythicFyrakk, the Blazing').waitFor();

await expect(page).toHaveURL(
'/report/dFzCLcjyqMbX43KP/20-Mythic+Volcoross+-+Kill+(3:11)/Toppledh/standard',
'/report/bjqrZRnNdvKPXt13/34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)/Toppledh/standard',
);
});
4 changes: 2 additions & 2 deletions scripts/talents/generate-talents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ import {
TalentNode,
} from './talent-tree-types';

const LIVE_WOW_BUILD_NUMBER = '10.2.5.52902';
const LIVE_WOW_BUILD_NUMBER = '10.2.6.53913';
const LIVE_TALENT_DATA_URL = 'https://www.raidbots.com/static/data/live/talents.json';
const LIVE_SPELLPOWER_DATA_URL = `https://wago.tools/db2/SpellPower/csv?build=${LIVE_WOW_BUILD_NUMBER}`;
const PTR_WOW_BUILD_NUMBER = '10.2.5.52902';
const PTR_WOW_BUILD_NUMBER = '10.2.6.53877';
const PTR_TALENT_DATA_URL = 'https://www.raidbots.com/static/data/xptr/talents.json';
const PTR_SPELLPOWER_DATA_URL = `https://wago.tools/db2/SpellPower/csv?build=${PTR_WOW_BUILD_NUMBER}`;

Expand Down
1 change: 1 addition & 0 deletions src/CHANGELOG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import SpellLink from 'interface/SpellLink';

// prettier-ignore
export default [
change(date(2024, 3, 26), 'Add patch 10.2.6.', ToppleTheNun),
change(date(2024, 3, 26), 'Add Dragonflight season 4 M+ dungeons and zone.', ToppleTheNun),
change(date(2024, 3, 26), 'Remove support for Shadowlands tier sets.', ToppleTheNun),
change(date(2024, 3, 26), 'Add tier set IDs for Dragonflight season 4.', ToppleTheNun),
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/retail/deathknight/blood/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const config: Config = {
contributors: [Yajinni, joshinator],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
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
2 changes: 1 addition & 1 deletion src/analysis/retail/demonhunter/havoc/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const CONFIG: Config = {
contributors: [ToppleTheNun],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
5 changes: 3 additions & 2 deletions src/analysis/retail/demonhunter/vengeance/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const config: Config = {
contributors: [ToppleTheNun],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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 Expand Up @@ -68,7 +68,8 @@ const config: Config = {
</>
),
// A recent example report to see interesting parts of the spec. Will be shown on the homepage.
exampleReport: '/report/dFzCLcjyqMbX43KP/20-Mythic+Volcoross+-+Kill+(3:11)/Toppledh/standard',
exampleReport:
'/report/bjqrZRnNdvKPXt13/34-Mythic+Fyrakk+the+Blazing+-+Kill+(8:47)/Toppledh/standard',
// Default to using the Guide
guideDefault: true,
// Only use the Guide
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/retail/druid/balance/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Sref, Hartra344, Jundarer],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
2 changes: 1 addition & 1 deletion src/analysis/retail/druid/feral/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Sref],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
2 changes: 1 addition & 1 deletion src/analysis/retail/druid/guardian/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Sref],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
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
2 changes: 1 addition & 1 deletion src/analysis/retail/druid/restoration/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Sref],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
2 changes: 1 addition & 1 deletion src/analysis/retail/evoker/augmentation/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Vollmer],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
2 changes: 1 addition & 1 deletion src/analysis/retail/evoker/devastation/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Vireve, Tyndi, Vollmer],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
2 changes: 1 addition & 1 deletion src/analysis/retail/evoker/preservation/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Trevor],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
guideDefault: 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.
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/retail/mage/arcane/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Sharrq, SyncSubaru],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
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
2 changes: 1 addition & 1 deletion src/analysis/retail/mage/fire/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Sharrq],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
2 changes: 1 addition & 1 deletion src/analysis/retail/mage/frost/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Sharrq],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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.
description: (
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/retail/monk/brewmaster/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [emallson],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
2 changes: 1 addition & 1 deletion src/analysis/retail/monk/mistweaver/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config: Config = {
contributors: [Trevor, Vohrr],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class DANCE_OF_CHI_JI extends Analyzer {

constructor(options: Options) {
super(options);
this.active = this.selectedCombatant.hasTalent(TALENTS_MONK.DANCE_OF_CHI_JI_TALENT);
this.active = this.selectedCombatant.hasTalent(TALENTS_MONK.DANCE_OF_CHI_JI_WINDWALKER_TALENT);
this.addEventListener(
Events.damage
.by(SELECTED_PLAYER | SELECTED_PLAYER_PET)
Expand Down Expand Up @@ -79,7 +79,7 @@ class DANCE_OF_CHI_JI extends Analyzer {
size="flexible"
tooltip={<>Total damage increase: {formatNumber(this.damageGain)}</>}
>
<BoringSpellValueText spell={TALENTS_MONK.DANCE_OF_CHI_JI_TALENT}>
<BoringSpellValueText spell={TALENTS_MONK.DANCE_OF_CHI_JI_WINDWALKER_TALENT}>
<img src="/img/sword.png" alt="Damage" className="icon" /> {formatNumber(this.dps)} DPS{' '}
<small>
{formatPercentage(this.owner.getPercentageOfTotalDamageDone(this.damageGain))} % of
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/retail/priest/discipline/CONFIG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: Config = {
contributors: [Hana],
expansion: Expansion.Dragonflight,
// The WoW client patch this spec was last updated.
patchCompatibility: '10.2.5',
patchCompatibility: '10.2.6',
isPartial: false,
// 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
2 changes: 0 additions & 2 deletions src/analysis/retail/priest/holy/CombatLogParser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,6 @@ class CombatLogParser extends CoreCombatLogParser {
harmoniousApparatus: Talents.BottomRow.HarmoniousApparatus,
resonantWords: Talents.BottomRow.ResonantWords,
TranslucentImage: TranslucentImage,
rapidRecovery: Talents.BottomRow.RapidRecovery,
empoweredRenew: Talents.BottomRow.EmpoweredRenew,
miracleWorker: Talents.BottomRow.MiracleWorker,

BurningVehemence: Talents.TopRow.BurningVehemence,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class HolyWordsReductionBySpell extends Analyzer {
};
lightOfTheNaaruActive = false;
apotheosisActive = false;
harmoniousApparatusActive = false;
voiceOfHarmonyActive = false;

protected sanctify!: HolyWordSanctify;
protected serenity!: HolyWordSerenity;
Expand All @@ -33,9 +33,7 @@ class HolyWordsReductionBySpell extends Analyzer {
TALENTS.LIGHT_OF_THE_NAARU_TALENT,
);
this.apotheosisActive = this.selectedCombatant.hasTalent(TALENTS.APOTHEOSIS_TALENT);
this.harmoniousApparatusActive = this.selectedCombatant.hasTalent(
TALENTS.HARMONIOUS_APPARATUS_TALENT,
);
this.voiceOfHarmonyActive = this.selectedCombatant.hasTalent(TALENTS.VOICE_OF_HARMONY_TALENT);
}

get totalReduction() {
Expand Down Expand Up @@ -155,7 +153,7 @@ class HolyWordsReductionBySpell extends Analyzer {
<td>Base</td>
{this.apotheosisActive && <th>Apotheosis</th>}
{this.lightOfTheNaaruActive && <th>Light of the Naaru</th>}
{this.harmoniousApparatusActive && <th>Harmonious apparatus</th>}
{this.voiceOfHarmonyActive && <th>Harmonious apparatus</th>}
</tr>
</thead>
<tbody>
Expand All @@ -171,7 +169,7 @@ class HolyWordsReductionBySpell extends Analyzer {
{this.lightOfTheNaaruActive && (
<td>{Math.ceil(reductionBySpell[e].lightOfTheNaaru / 1000)}s</td>
)}
{this.harmoniousApparatusActive && (
{this.voiceOfHarmonyActive && (
<td>{Math.ceil(reductionBySpell[e].apparatus / 1000)}s</td>
)}
</tr>
Expand Down
10 changes: 5 additions & 5 deletions src/analysis/retail/priest/holy/modules/spells/Renew.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ class Renew extends Analyzer {
if (this.selectedCombatant.hasTalent(TALENTS.REVITALIZING_PRAYERS_TALENT)) {
this.revitalizingPrayersActive = true;
}
if (this.selectedCombatant.hasTalent(TALENTS.RAPID_RECOVERY_TALENT)) {
this.rapidRecoveryActive = true;
// if rapid recovery is active, renews from revitilizing prayers are 5 seconds
this.revitalizingPrayersRenewFraction = 5 / 12;
}
// if (this.selectedCombatant.hasTalent(TALENTS.RAPID_RECOVERY_TALENT)) {
// this.rapidRecoveryActive = true;
// // if rapid recovery is active, renews from revitilizing prayers are 5 seconds
// this.revitalizingPrayersRenewFraction = 5 / 12;
// }
this.addEventListener(Events.heal.by(SELECTED_PLAYER).spell(TALENTS.RENEW_TALENT), this.onHeal);
this.addEventListener(Events.cast.by(SELECTED_PLAYER), this.onCast);
this.addEventListener(
Expand Down
Loading

0 comments on commit 04480f8

Please sign in to comment.