Skip to content

Commit

Permalink
Give Xeph special treatment so he can better farm his R1 heal logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Krealle committed Mar 25, 2024
1 parent e32e0cb commit 8a690a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/analysis/retail/evoker/augmentation/Guide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ 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} />
<MajorDefensives />
{!isXeph && <MajorDefensives />}
<PreparationSection />
</>
);
Expand Down

0 comments on commit 8a690a2

Please sign in to comment.