Skip to content

Commit

Permalink
Merge branch 'feature/dtr' of https://github.com/wowsims/cata into fe…
Browse files Browse the repository at this point in the history
…ature/dtr
  • Loading branch information
1337LutZ committed Oct 25, 2024
2 parents e4c7bec + bfb6425 commit 33ae582
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions ui/core/constants/item_notices.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,11 @@ const VPLC_IMPLEMENTATION_WARNING = (
</>
);

const DTR_PARTIAL_IMPLEMENTATION_WARNING = (
const DTR_FIRST_IMPLEMENTATION_WARNING = (
<>
<p>The following interactions are most likely inaccurate:</p>
<ul className="mb-0">
<li>Proc chance</li>
<li>Replication of various spells</li>
</ul>
<p className="fw-bold">This item was implemented based on the first round of testing on PTR.</p>
<p>Results may change as we get more logs and reports on interactions.</p>
<WantToHelpMessage />
</>
);

Expand Down Expand Up @@ -226,15 +224,15 @@ export const ITEM_NOTICES = new Map<number, ItemNoticeData>([
71086,
{
[Spec.SpecUnknown]: <p>This item is unsupported for this spec.</p>,
[Spec.SpecBalanceDruid]: DTR_PARTIAL_IMPLEMENTATION_WARNING,
[Spec.SpecArcaneMage]: DTR_PARTIAL_IMPLEMENTATION_WARNING,
[Spec.SpecFireMage]: DTR_PARTIAL_IMPLEMENTATION_WARNING,
[Spec.SpecFrostMage]: DTR_PARTIAL_IMPLEMENTATION_WARNING,
[Spec.SpecShadowPriest]: DTR_PARTIAL_IMPLEMENTATION_WARNING,
[Spec.SpecElementalShaman]: DTR_PARTIAL_IMPLEMENTATION_WARNING,
[Spec.SpecAfflictionWarlock]: DTR_PARTIAL_IMPLEMENTATION_WARNING,
[Spec.SpecDemonologyWarlock]: DTR_PARTIAL_IMPLEMENTATION_WARNING,
[Spec.SpecDestructionWarlock]: DTR_PARTIAL_IMPLEMENTATION_WARNING,
[Spec.SpecBalanceDruid]: DTR_FIRST_IMPLEMENTATION_WARNING,
[Spec.SpecArcaneMage]: DTR_FIRST_IMPLEMENTATION_WARNING,
[Spec.SpecFireMage]: DTR_FIRST_IMPLEMENTATION_WARNING,
[Spec.SpecFrostMage]: DTR_FIRST_IMPLEMENTATION_WARNING,
[Spec.SpecShadowPriest]: DTR_FIRST_IMPLEMENTATION_WARNING,
[Spec.SpecElementalShaman]: DTR_FIRST_IMPLEMENTATION_WARNING,
[Spec.SpecAfflictionWarlock]: DTR_FIRST_IMPLEMENTATION_WARNING,
[Spec.SpecDemonologyWarlock]: DTR_FIRST_IMPLEMENTATION_WARNING,
[Spec.SpecDestructionWarlock]: DTR_FIRST_IMPLEMENTATION_WARNING,
},
],
// Rogue Legendary Daggers (All Stages)
Expand Down

0 comments on commit 33ae582

Please sign in to comment.