Skip to content

Commit

Permalink
Timing adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
xpdota committed Dec 27, 2024
1 parent bddb743 commit e69f40c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,8 @@ private boolean doWeCareAboutStygian(XivCombatant combatant) {
@PlayerStatusCallout(value = 0x1BD, cancellable = true)
private final ModifiableCallout<BuffApplied> thornyVine = ModifiableCallout.durationBasedCall("Thorny Vine", "Break Tether");

private final ModifiableCallout<AbilityCastStart> lateralCore = ModifiableCallout.durationBasedCall("Lateral-Core Phaser", "Sides then In");
private final ModifiableCallout<AbilityCastStart> coreLateral = ModifiableCallout.durationBasedCall("Core-Lateral Phaser", "In then Sides");
private final ModifiableCallout<AbilityCastStart> lateralCore = ModifiableCallout.durationBasedCallWithOffset("Lateral-Core Phaser", "Sides then In", Duration.ofMillis(3300));
private final ModifiableCallout<AbilityCastStart> coreLateral = ModifiableCallout.durationBasedCallWithOffset("Core-Lateral Phaser", "In then Sides", Duration.ofMillis(3300));
private final ModifiableCallout<?> coreWithTower = new ModifiableCallout<>("Lateral-Core: Follow-Up with Tower", "In then Tower");
private final ModifiableCallout<?> lateralWithTower = new ModifiableCallout<>("Core-Lateral: Follow-Up with Tower", "Out and Tower");
private final ModifiableCallout<?> coreWithPivot = new ModifiableCallout<>("Lateral-Core: Follow-Up with Pivot", "In then {rotationSafe}");
Expand Down Expand Up @@ -409,7 +409,7 @@ else if (mySection == CodCarSection.WEST_OUTSIDE) {
throw new IllegalStateException("How?");
}
s.updateCall(sidesFirst ? lateralCore : coreLateral, e1);
s.waitCastFinished(casts, e1);
s.waitEvent(AbilityUsedEvent.class, aue -> aue.abilityIdMatches(0x9E31));
s.updateCall(sidesFirst ? coreWithPivot : lateralWithPivot);
}
});
Expand Down

0 comments on commit e69f40c

Please sign in to comment.