Skip to content

Commit

Permalink
fix raid dmg label and default shaman settings
Browse files Browse the repository at this point in the history
  • Loading branch information
lologarithm committed Oct 6, 2023
1 parent 793a5c8 commit a2c3ef8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ui/core/components/detailed_results/metrics_table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export abstract class MetricsTable<T> extends ResultComponent {
cellElem.appendChild(
<>
<img className="metrics-action-icon" src={player.iconUrl}></img>
<span className={`metrics-action-name text-${player.classColor}`}>player.label</span>
<span className={`metrics-action-name text-${player.classColor}`}>{player.label}</span>
</>
);
},
Expand Down
7 changes: 7 additions & 0 deletions ui/elemental_shaman/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ export const DefaultRotation = ElementalShamanRotation.create({
export const DefaultOptions = ElementalShamanOptions.create({
shield: ShamanShield.WaterShield,
bloodlust: true,
totems: ShamanTotems.create({
earth: EarthTotem.StrengthOfEarthTotem,
air: AirTotem.WrathOfAirTotem,
fire: FireTotem.TotemOfWrath,
water: WaterTotem.ManaSpringTotem,
useFireElemental: true,
}),
});

export const DefaultConsumes = Consumes.create({
Expand Down

0 comments on commit a2c3ef8

Please sign in to comment.