diff --git a/src/analysis/retail/evoker/preservation/constants.ts b/src/analysis/retail/evoker/preservation/constants.ts
index 1bac6f67b25..32b16980d3d 100644
--- a/src/analysis/retail/evoker/preservation/constants.ts
+++ b/src/analysis/retail/evoker/preservation/constants.ts
@@ -1,4 +1,3 @@
-import ITEMS from 'common/ITEMS';
import SPELLS from 'common/SPELLS';
import { TALENTS_EVOKER } from 'common/TALENTS';
@@ -43,7 +42,7 @@ export const DUPLICATION_SPELLS = [
SPELLS.EMERALD_COMMUNION_ALLY.id,
SPELLS.FLUTTERING_SEEDLINGS_HEAL.id,
TALENTS_EVOKER.ECHO_TALENT.id,
- ITEMS.BROODKEEPERS_PROMISE_HEAL.id, // adding this here because everyone is running it
+ SPELLS.ENGULF_HEAL.id,
]; // common spell ids that trigger heal duplication for Cycle of Life and Lifebind
// heal events that can be caused by an echo heal
@@ -58,6 +57,7 @@ export const ECHO_HEALS = [
SPELLS.VERDANT_EMBRACE_HEAL,
SPELLS.LIFEBIND_HEAL,
SPELLS.GOLDEN_HOUR_HEAL,
+ SPELLS.ENGULF_HEAL,
];
export const STASIS_CAST_IDS = [
diff --git a/src/analysis/retail/evoker/preservation/modules/talents/EchoBreakdown.tsx b/src/analysis/retail/evoker/preservation/modules/talents/EchoBreakdown.tsx
index fa45c4f5224..783f6659c6f 100644
--- a/src/analysis/retail/evoker/preservation/modules/talents/EchoBreakdown.tsx
+++ b/src/analysis/retail/evoker/preservation/modules/talents/EchoBreakdown.tsx
@@ -258,7 +258,7 @@ class EchoBreakdown extends Analyzer {
}
statistic() {
- const echoData = this.getEchoDataItems;
+ const echoData = this.getEchoDataItems();
if (!echoData.length) {
return null;
}
@@ -269,12 +269,12 @@ class EchoBreakdown extends Analyzer {
breakdown by spell
>
}
+ position={STATISTIC_ORDER.OPTIONAL(13)}
category={STATISTIC_CATEGORY.TALENTS}
- position={STATISTIC_ORDER.CORE(1)}
- wide
smallTitle
+ wide
>
-
+
);
}