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

Commit

Permalink
DT MCH Support
Browse files Browse the repository at this point in the history
  • Loading branch information
Tykku committed Jun 30, 2024
1 parent b1c0da2 commit f26f397
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions BasicRotations/Ranged/MCH_Default.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
namespace DefaultRotations.Ranged;

[Rotation("Default", CombatType.PvE, GameVersion = "6.58", Description = "Additonal contributions to this rotation thanks to Toshi!")]
[Rotation("Default", CombatType.PvE, GameVersion = "6.58", Description = "")]
[SourceCode(Path = "main/DefaultRotations/Ranged/MCH_Default.cs")]
[Api(1)]
[Api(2)]
public sealed class MCH_Default : MachinistRotation
{
#region Config Options
Expand Down Expand Up @@ -97,7 +97,7 @@ protected override bool AttackAbility(IAction nextGCD, out IAction? act)
if (UseBurstMedicine(out act)) return true;

{
if ((IsLastAbility(false, HyperchargePvE) || Heat >= 50) && !CombatElapsedLess(10) && CanUseHyperchargePvE(out _)
if ((IsLastAbility(false, HyperchargePvE) || Heat >= 50 || Player.HasStatus(true, StatusID.Hypercharged)) && !CombatElapsedLess(10) && CanUseHyperchargePvE(out _)
&& !LowLevelHyperCheck && WildfirePvE.CanUse(out act)) return true;
}
}
Expand Down Expand Up @@ -150,7 +150,7 @@ protected override bool GeneralGCD(out IAction? act)
if (ChainSawPvE.CanUse(out act)) return true;
}
if (SpreadShotPvE.CanUse(out act)) return true;

if (FullMetalFieldPvE.CanUse(out act)) return true;
// Single target actions: CleanShot, SlugShot, and SplitShot based on their usability.
if (CleanShotPvE.CanUse(out act)) return true;
if (SlugShotPvE.CanUse(out act)) return true;
Expand Down

0 comments on commit f26f397

Please sign in to comment.