Skip to content

Commit 09714e2

Browse files
committed
dream reenactment 1 missing hints
1 parent dadab95 commit 09714e2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

BossMod/Autorotation/Standard/xan/Casters/RDM.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ void DoGCD(in Strategy strategy, Enemy? primaryTarget, int comboMana)
222222
if (NumAOETargets > 2)
223223
PushGCD(AID.Scatter, BestAOETarget, GCDPriority.InstantAOE);
224224

225-
if (BlackMana > WhiteMana && CombatTimer > 6)
225+
if (BlackMana > WhiteMana && (CombatTimer > 6 || BlackMana > 18))
226226
PushGCD(AID.Veraero, primaryTarget, GCDPriority.Instant);
227227

228228
PushGCD(AID.Verthunder, primaryTarget, GCDPriority.Instant);

BossMod/BossMod.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Dalamud.NET.Sdk/14.0.1">
33
<PropertyGroup>
4-
<Version>0.4.20.0</Version>
4+
<Version>0.4.20.1</Version>
55
</PropertyGroup>
66

77
<ItemGroup>

BossMod/Modules/Dawntrail/Savage/RM12S2TheLindwurm/RM12S2TheLindwurmStates.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,9 @@ void IdyllicDream(uint id, float delay)
265265
.ExecOnEnter<IdyllicDreamHeavySlamPlayer>(p => p.Predict(0));
266266

267267
// clones replay stack/spread
268-
Cast(id + 0x320, AID.Reenactment, 1.9f, 3);
268+
Cast(id + 0x320, AID.Reenactment, 1.9f, 3)
269+
.ExecOnEnter<IdyllicDreamManaBurstPlayer>(p => p.Risky = true)
270+
.ExecOnEnter<IdyllicDreamHeavySlamPlayer>(p => p.EnableHints = true);
269271
ComponentCondition<IdyllicDreamPlayerCastCounter>(id + 0x322, 3.6f, c => c.NumCasts == 4, "Reenactment 1");
270272

271273
// platform transform, jumpy clones

0 commit comments

Comments
 (0)