Skip to content

Commit

Permalink
Added missing parameters for bstatus^ command
Browse files Browse the repository at this point in the history
  • Loading branch information
Citrinate committed Mar 3, 2024
1 parent 4c7c6f5 commit 3505016
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions BoosterManager/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ internal static class Commands {

case "BSTATUS" or "BOOSTERSTATUS":
return ResponseBoosterStatus(access, steamID, args[1]);

case "BSTATUS^" or "BOOSTERSTATUS^":
return ResponseBoosterStatus(access, steamID, args[1], true);

case "BSTOP" or "BOOSTERSTOP" when args.Length > 2:
return ResponseBoosterStop(access, steamID, args[1], Utilities.GetArgsAsText(args, 2, ","));
Expand Down

0 comments on commit 3505016

Please sign in to comment.