Skip to content

Commit

Permalink
no more special treatment for Xeph
Browse files Browse the repository at this point in the history
  • Loading branch information
Krealle committed Apr 1, 2024
1 parent 8736117 commit 7add40a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions src/analysis/retail/evoker/augmentation/Guide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ import { Helpers } from './modules/guide/Helpers';
import MajorDefensives from '../shared/modules/MajorDefensives/DefensivesGuide';

export default function Guide({ modules, events, info }: GuideProps<typeof CombatLogParser>) {
const isXeph = info?.combatant?.name === 'Xephyris';
return (
<>
{isXeph && <MajorDefensives />}
<IntroSection />
<Helpers modules={modules} events={events} info={info} />
<CoreRotationSection modules={modules} events={events} info={info} />
<CooldownSection modules={modules} info={info} events={events} />
{!isXeph && <MajorDefensives />}
<MajorDefensives />
<PreparationSection />
</>
);
Expand Down
4 changes: 1 addition & 3 deletions src/analysis/retail/evoker/devastation/Guide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,15 @@ import { IntroSection } from './modules/guide/IntroSection';
import MajorDefensives from '../shared/modules/MajorDefensives/DefensivesGuide';

export default function Guide({ modules, events, info }: GuideProps<typeof CombatLogParser>) {
const isXeph = info?.combatant?.name === 'Xephyris';
return (
<>
{isXeph && <MajorDefensives />}
<IntroSection />
<EssenceGraphSection modules={modules} info={info} events={events} />
<CooldownSection modules={modules} info={info} events={events} />
<DragonRageSection modules={modules} info={info} events={events} />
<DamageEfficiency modules={modules} info={info} events={events} />
<CoreRotation modules={modules} info={info} events={events} />
{!isXeph && <MajorDefensives />}
<MajorDefensives />
<PreparationSection />
</>
);
Expand Down

0 comments on commit 7add40a

Please sign in to comment.