added rotate playing stuff, fix bracket, removed manifest

This commit is contained in:
Master Kwoth
2016-02-24 17:33:09 +01:00
parent e91ed77cc6
commit c866767fbb
5 changed files with 139 additions and 2 deletions

View 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;
}
}