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

Commit

Permalink
fix: fix for statechanging in countdown.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Jan 25, 2023
1 parent 6ba62e4 commit a94d8cc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion RotationSolver/Commands/RSCommands_Actions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ internal static void UpdateRotationState()
//Auto start at count Down.
else if (Service.Configuration.StartOnCountdown && CountDown.CountDownTime > 0)
{
if (StateType == StateCommandType.Cancel) StateType = StateCommandType.Smart;
if (StateType == StateCommandType.Cancel)
{
DoStateCommandType(StateCommandType.Smart);
}
}
}

Expand Down

0 comments on commit a94d8cc

Please sign in to comment.