Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2f45bac

Browse files
committedNov 21, 2024·
replaced a decoration for Decima
1 parent bc4af95 commit 2f45bac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎GW2EIEvtcParser/EncounterLogic/Raids/W8/DecimaTheStormsinger.cs‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,13 @@ internal override void ComputeNPCCombatReplayActors(NPC target, ParsedEvtcLog lo
9595
case (int)ArcDPSEnums.TrashID.EnlightenedConduit:
9696
if (log.CombatData.TryGetEffectEventsBySrcWithGUID(target.AgentItem, EffectGUIDs.DecimaEnlightenedConduitPurpleAoE, out var effects))
9797
{
98-
9998
// TODO: We need to find a way to handle sizing
10099
foreach (var effect in effects)
101100
{
102101
var aoeLifeSpan = effect.ComputeDynamicLifespan(log, 1200000);
103-
replay.Decorations.Add(new CircleDecoration(150, aoeLifeSpan, Colors.DarkPurple, 0.3, new PositionConnector(effect.Position)));
102+
// Placeholder to indicate activated conduits, until we can find proper sizes
103+
replay.AddOverheadIcon(aoeLifeSpan, target, BuffImages.InvokeLightning);
104+
//replay.Decorations.Add(new CircleDecoration(150, aoeLifeSpan, Colors.DarkPurple, 0.3, new PositionConnector(effect.Position)));
104105
}
105106
}
106107
break;

0 commit comments

Comments
 (0)
Please sign in to comment.