Skip to content

Commit dfd4036

Browse files
authored
Merge pull request #516 from Starlight-alt/bugfix/dnc-tech-step-feature
[BUGFIX] DNC Dance Step Combo enabled for Technical Step even when disabled
2 parents c79dbcc + a50bf85 commit dfd4036

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

XIVComboExpanded/Combos/DNC.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ protected override uint Invoke(uint actionID, uint lastComboMove, float comboTim
212212
{
213213
var gauge = GetJobGauge<DNCGauge>();
214214

215-
if (level >= DNC.Levels.StandardStep && gauge.IsDancing)
215+
if (IsEnabled(CustomComboPreset.DancerDanceStepCombo) && level >= DNC.Levels.StandardStep && gauge.IsDancing)
216216
{
217217
if (gauge.CompletedSteps < 4 && HasEffect(DNC.Buffs.TechnicalStep))
218218
return gauge.NextStep;

0 commit comments

Comments
 (0)