added rotate playing stuff, fix bracket, removed manifest
This commit is contained in:
14
NadekoBot/Classes/Permissions/SimpleCheckers.cs
Normal file
14
NadekoBot/Classes/Permissions/SimpleCheckers.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using Discord;
|
||||
using Discord.Commands;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace NadekoBot.Classes.Permissions {
|
||||
static class SimpleCheckers {
|
||||
public static Func<Command, User, Channel, bool> OwnerOnly() =>
|
||||
(com, user, ch) => user.Id == NadekoBot.creds.OwnerID;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user