Skip to content

Commit

Permalink
Give mag full power
Browse files Browse the repository at this point in the history
  • Loading branch information
svr333 committed Dec 20, 2023
1 parent 50eef47 commit 3734282
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace AdvancedBot.Core.Commands.Preconditions
{
public class RequirePrivateList : PreconditionAttribute
{
private List<ulong> _userIds = new List<ulong>() { 202095042372829184, 942849642931032164, 209801906237865984, 180676108088246272, 356060824223350784 };
private List<ulong> _userIds = new List<ulong>() { 202095042372829184, 942849642931032164, 209801906237865984, 180676108088246272, 356060824223350784, 275698828974489612 };

public override async Task<PreconditionResult> CheckRequirementsAsync(IInteractionContext context, ICommandInfo commandInfo, IServiceProvider services)
{
Expand Down
4 changes: 2 additions & 2 deletions src/AdvancedBot.Core/Commands/TopModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ public class TopModule : InteractionModuleBase<SocketInteractionContext>
public PaginatorService Paginator { get; set; }
public LogService LogService { get; set; }

public readonly List<ulong> PowerUsers = new List<ulong>() { 202095042372829184, 209801906237865984, 942849642931032164, 180676108088246272, 356060824223350784 };
public readonly List<ulong> SemiPowerUsers = new List<ulong>() { 275698828974489612 };
public readonly List<ulong> PowerUsers = new List<ulong>() { 202095042372829184, 209801906237865984, 942849642931032164, 180676108088246272, 356060824223350784, 275698828974489612 };
public readonly List<ulong> SemiPowerUsers = new List<ulong>() { };

public override async Task BeforeExecuteAsync(ICommandInfo command)
{
Expand Down

0 comments on commit 3734282

Please sign in to comment.