finished moving help - closes #63

This commit is contained in:
Master Kwoth 2016-02-25 03:38:00 +01:00
parent f010bf44df
commit f9a1ca0c50
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ namespace NadekoBot {
#endregion OldHelp
if (string.IsNullOrWhiteSpace(e.GetArg("command"))) {
await e.User.Send("**LIST OF COMMANDS CAN BE FOUND ON THIS LINK**\n\n <https://gist.github.com/Kwoth/1ab3a38424f208802b74>");
await e.User.Send("**LIST OF COMMANDS CAN BE FOUND ON THIS LINK**\n\n <https://github.com/Kwoth/NadekoBot/blob/master/commandlist.md>");
return;
}
else {
@ -99,7 +99,7 @@ Version: `{NadekoStats.Instance.BotVersion}`";
**GUIDE ONLY**: <https://github.com/Kwoth/NadekoBot/blob/master/ComprehensiveGuide.md>
**LIST OF COMMANDS**: <https://gist.github.com/Kwoth/1ab3a38424f208802b74>"));
**LIST OF COMMANDS**: <https://github.com/Kwoth/NadekoBot/blob/master/commandlist.md>"));
cgb.CreateCommand("-donate")
.Alias("~donate")

View File

@ -66,7 +66,7 @@ namespace NadekoBot.Commands {
public override void Init(CommandGroupBuilder cgb) {
cgb.CreateCommand(".rotateplaying")
.Alias(".ropl")
.Alias("Toggles rotation of playing status of the dynamic strings you specified earlier.")
.Description("Toggles rotation of playing status of the dynamic strings you specified earlier.")
.AddCheck(Classes.Permissions.SimpleCheckers.OwnerOnly())
.Do(DoFunc());