Skip to content

Commit

Permalink
update MCH
Browse files Browse the repository at this point in the history
  • Loading branch information
xhabit committed Aug 3, 2024
1 parent 9ae897f commit 9f29a8c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion XIVSlothComboX/Combos/PvE/MCH.cs
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,16 @@ private static bool ReassembledTools(ref uint actionID, MCHGauge gauge)
return true;
}

bool 钻头是否可以使用 = GetCooldownRemainingTime(钻头Drill) - GetCooldownRemainingTime(SplitShot) < GetCooldown(钻头Drill).单次计时器 + 0.5f;
bool 钻头是否可以使用 = false;

if (GetMaxCharges(钻头Drill) > 1)
{
钻头是否可以使用 = GetCooldownRemainingTime(钻头Drill) - GetCooldownRemainingTime(SplitShot) < GetCooldown(钻头Drill).单次计时器 + 0.5f;
}
else
{
钻头是否可以使用 = GetCooldownRemainingTime(钻头Drill) - GetCooldownRemainingTime(SplitShot) <= 0;
}


if (IsEnabled(CustomComboPreset.MCH_ST_Adv_Drill) && reassembledDrill && LevelChecked(钻头Drill) && 钻头是否可以使用)
Expand Down

0 comments on commit 9f29a8c

Please sign in to comment.