Skip to content

Commit

Permalink
修复 EXPLORER 命令
Browse files Browse the repository at this point in the history
  • Loading branch information
chr233 committed Jun 23, 2022
1 parent c97a052 commit 5406163
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ASFEnhance/ASFEnhance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,11 @@ public Task OnLoaded()
case "PCG" when args.Length == 2 && access >= EAccess.Master:
return await Cart.Command.ResponsePurchaseGift(bot, args[1]).ConfigureAwait(false);

//Explorer
case "EXPLORER" when access >= EAccess.Master:
case "EX" when access >= EAccess.Master:
return await Explorer.Command.ResponseExploreDiscoveryQueue(Utilities.GetArgsAsText(args, 1, ",")).ConfigureAwait(false);

//Group
case "JOINGROUP" when args.Length > 2 && access >= EAccess.Master && access >= EAccess.Master:
case "JG" when args.Length > 2 && access >= EAccess.Master:
Expand Down

0 comments on commit 5406163

Please sign in to comment.