diff --git a/src/CHANGELOG.tsx b/src/CHANGELOG.tsx index 564c341d7d9..90755160c9a 100644 --- a/src/CHANGELOG.tsx +++ b/src/CHANGELOG.tsx @@ -35,6 +35,7 @@ import SpellLink from 'interface/SpellLink'; // prettier-ignore export default [ + change(date(2024, 9, 9), 'Fix character search showing UNKNOWN instead of THE WAR WITHIN.', ToppleTheNun), change(date(2024, 9, 8), "Add Nerub'ar Palace bosses and season 1 M+ dungeons.", ToppleTheNun), change(date(2024, 9, 5), 'Update Rogue spells for Classic Cataclysm', jazminite), change(date(2024, 9, 4), 'Updates to Active Time calculation to avoid cases where overcount could occur.', Sref), diff --git a/src/game/Expansion.ts b/src/game/Expansion.ts index 480528688a2..2b9da2cf8a7 100644 --- a/src/game/Expansion.ts +++ b/src/game/Expansion.ts @@ -17,7 +17,7 @@ enum ExpansionName { WrathOfTheLichKing = 'wotlk', Cataclysm = 'cataclysm', Dragonflight = 'dragonflight', - TheWarWithin = 'UNKNOWN', + TheWarWithin = 'the war within', } export const CLASSIC_EXPANSION = Expansion.Cataclysm; diff --git a/src/interface/guide/components/Preparation/PreparationSection.tsx b/src/interface/guide/components/Preparation/PreparationSection.tsx index b8674a42601..314692d24fb 100644 --- a/src/interface/guide/components/Preparation/PreparationSection.tsx +++ b/src/interface/guide/components/Preparation/PreparationSection.tsx @@ -4,7 +4,7 @@ import Spell, { Enchant } from 'common/SPELLS/Spell'; import EnchantmentSubSection from './EnchantmentSubSection'; import ConsumablesSubSection from './ConsumablesSubSection'; import EnhancementSubSection from 'interface/guide/components/Preparation/EnhancementSubSection'; -import Expansion, { isRetailExpansion } from 'game/Expansion'; +import Expansion, { isRetailExpansion, RETAIL_EXPANSION } from 'game/Expansion'; interface Props { recommendedEnchantments?: Record; @@ -18,7 +18,7 @@ const PreparationSection = ({ recommendedFlasks, recommendedFoods, recommendedWeaponEnhancements, - expansion = Expansion.Dragonflight, + expansion = RETAIL_EXPANSION, }: Props) => (