Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
Changed once again timings on hammer
Browse files Browse the repository at this point in the history
  • Loading branch information
FloryxHwa committed Aug 25, 2024
1 parent ac047fb commit 668cb1c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions BasicRotations/Magical/ICWA_PCT_BETA.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ protected override bool AttackAbility(IAction nextGCD, out IAction? act)
#region GCD Logic
protected override bool GeneralGCD(out IAction? act)
{
bool burstTimingChecker = !ScenicMusePvE.Cooldown.WillHaveOneCharge(52) && SteelMusePvE.Cooldown.CurrentCharges != 1 || Player.HasStatus(true, StatusID.StarryMuse);
//Opener requirements
if (CombatTime < 5)
{
Expand All @@ -173,7 +172,7 @@ protected override bool GeneralGCD(out IAction? act)
if (CometInBlackPvE.CanUse(out act, skipCastingCheck: true, skipAoeCheck: true) && Paint > 0) return true;
}
if (StarPrismPvE.CanUse(out act, skipAoeCheck: true) && Player.HasStatus(true, StatusID.Starstruck)) return true;
if (HammerStampPvE.CanUse(out act, skipCastingCheck: true, skipAoeCheck: true) && HasHammerTime && burstTimingChecker) return true;
if (HammerStampPvE.CanUse(out act, skipCastingCheck: true, skipAoeCheck: true) && HasHammerTime) return true;
//Cast when not in fight or no target available
if (!InCombat)
{
Expand Down Expand Up @@ -206,7 +205,7 @@ protected override bool GeneralGCD(out IAction? act)
// white/black paint use while moving
if (isMovingAndSwift)
{
if (HammerStampPvE.CanUse(out act, skipCastingCheck: true, skipAoeCheck: true) && burstTimingChecker) return true;
if (HammerStampPvE.CanUse(out act, skipCastingCheck: true, skipAoeCheck: true)) return true;
if (HolyCometMoving)
{
if (CometInBlackPvE.CanUse(out act, skipCastingCheck: true, skipAoeCheck: true)) return true;
Expand Down

0 comments on commit 668cb1c

Please sign in to comment.