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

@ -21,6 +21,7 @@ namespace NadekoBot.Modules {
public Administration() : base() {
commands.Add(new ServerGreetCommand());
commands.Add(new LogCommand());
commands.Add(new PlayingRotate());
}
public override void Install(ModuleManager manager) {

View File

@ -49,7 +49,7 @@ namespace NadekoBot.Modules {
});
cgb.CreateCommand("~e621")
.Description("Shows a random hentai image from e621.net with a given tag. Tag is optional but preffered. Use spaces for multiple tags.\n**Usage**: ~e621 yuri+kissing")
.Parameter("tag", ParameterType.Unparsed
.Parameter("tag", ParameterType.Unparsed)
.Do(async e => {
string tag = e.GetArg("tag");
if (tag == null)