Skip to content

Commit

Permalink
fix Kazzara displaying as Magmorax
Browse files Browse the repository at this point in the history
  • Loading branch information
ToppleTheNun committed May 10, 2023
1 parent d45faea commit dfed981
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 17 deletions.
1 change: 1 addition & 0 deletions src/CHANGELOG.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import { ItemLink } from 'interface';
import SpellLink from 'interface/SpellLink';

export default [
change(date(2023, 5, 10), 'Fix Kazzara displaying as Magmorax.', ToppleTheNun),
change(date(2023, 5, 8), 'Update leech rating per 1% to 10.1 values', Putro),
change(date(2023, 5, 5), 'Fix Playwright tests.', ToppleTheNun),
change(date(2023, 5, 4), 'Add 10.1 patch.', ToppleTheNun),
Expand Down
15 changes: 0 additions & 15 deletions src/game/raids/aberrus/Kazarra.ts

This file was deleted.

15 changes: 15 additions & 0 deletions src/game/raids/aberrus/Kazzara.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { Boss } from 'game/raids';

import Background from './backgrounds/Kazzara.jpg';
import Headshot from './headshots/Kazzara.jpg';

const Kazzara: Boss = {
id: 2688,
name: 'Kazzara, the Hellforged',
background: Background,
headshot: Headshot,
icon: 'inv_achievement_raiddragon_kazzara',
fight: {},
};

export default Kazzara;
4 changes: 2 additions & 2 deletions src/game/raids/aberrus/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Kazarra from 'game/raids/aberrus/Kazarra';
import Kazzara from 'game/raids/aberrus/Kazzara';
import AmalgamationChamber from 'game/raids/aberrus/AmalgamationChamber';
import ForgottenExperiments from 'game/raids/aberrus/ForgottenExperiments';
import AssaultOfTheZaqali from 'game/raids/aberrus/AssaultOfTheZaqali';
Expand All @@ -14,7 +14,7 @@ export default {
name: 'Vault of the Incarnates',
background: Background,
bosses: {
Kazarra,
Kazarra: Kazzara,
AmalgamationChamber,
ForgottenExperiments,
AssaultOfTheZaqali,
Expand Down

0 comments on commit dfed981

Please sign in to comment.