Skip to content

Commit

Permalink
I need a drink
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaksuhn committed Sep 26, 2024
1 parent 5420b1a commit a25d965
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SomethingNeedDoing/Misc/Changelog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ static void DisplayChangelog(string date, string changes, bool separator = true)

DisplayChangelog(
"2024-09-25",
"- Added GetActiveMacroName()\n");
"- Added GetActiveMacroName()\n" +
"- Added IsMacroRunningOrQueued()\n");

DisplayChangelog(
"2024-09-25",
Expand Down
1 change: 1 addition & 0 deletions SomethingNeedDoing/Misc/Commands/InternalCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ public List<string> ListAllFunctions()
public bool IsPauseLoopSet() => Service.MacroManager.PauseAtLoop;
public bool IsStopLoopSet() => Service.MacroManager.StopAtLoop;
public string GetActiveMacroName() => Service.MacroManager.ActiveMacroName;
public bool IsMacroRunningOrQueued(string name) => Service.MacroManager.MacroStatus.Any(m => m.Name == name);
}

0 comments on commit a25d965

Please sign in to comment.