From 5b4af23e93e08af39b9b372efe1dcceb4b8b0be8 Mon Sep 17 00:00:00 2001 From: Delicious-Flatbread Date: Tue, 22 Mar 2016 19:22:45 -0400 Subject: [PATCH 1/2] Update HelpCommand.cs --- NadekoBot/Commands/HelpCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NadekoBot/Commands/HelpCommand.cs b/NadekoBot/Commands/HelpCommand.cs index 08f2063b..ad969003 100644 --- a/NadekoBot/Commands/HelpCommand.cs +++ b/NadekoBot/Commands/HelpCommand.cs @@ -90,7 +90,7 @@ Version: `{NadekoStats.Instance.BotVersion}`"; .Parameter("command", ParameterType.Unparsed) .Do(DoFunc()); cgb.CreateCommand(Module.Prefix + "hgit") - .Description("OWNER ONLY commandlist.md file generation.") + .Description("Generates the commandlist.md file. **Owner Only!**") .AddCheck(Classes.Permissions.SimpleCheckers.OwnerOnly()) .Do(DoGitFunc()); cgb.CreateCommand(Module.Prefix + "readme") From c7b16c624cb9c6794a17add8941c999ece334b34 Mon Sep 17 00:00:00 2001 From: Delicious-Flatbread Date: Tue, 22 Mar 2016 19:35:26 -0400 Subject: [PATCH 2/2] Update LogCommand.cs --- NadekoBot/Commands/LogCommand.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NadekoBot/Commands/LogCommand.cs b/NadekoBot/Commands/LogCommand.cs index ad902786..36713f30 100644 --- a/NadekoBot/Commands/LogCommand.cs +++ b/NadekoBot/Commands/LogCommand.cs @@ -137,13 +137,13 @@ namespace NadekoBot.Commands { }); cgb.CreateCommand(Module.Prefix + "logserver") - .Description("Toggles logging in this channel. Logs every message sent/deleted/edited on the server. BOT OWNER ONLY. SERVER OWNER ONLY.") + .Description("Toggles logging in this channel. Logs every message sent/deleted/edited on the server. **Owner Only!**") .AddCheck(SimpleCheckers.OwnerOnly()) .AddCheck(SimpleCheckers.ManageServer()) .Do(DoFunc()); cgb.CreateCommand(Module.Prefix + "userpresence") - .Description("Starts logging to this channel when someone from the server goes online/offline/idle. BOT OWNER ONLY. SERVER OWNER ONLY.") + .Description("Starts logging to this channel when someone from the server goes online/offline/idle. **Owner Only!**") .AddCheck(SimpleCheckers.OwnerOnly()) .AddCheck(SimpleCheckers.ManageServer()) .Do(async e => { @@ -158,7 +158,7 @@ namespace NadekoBot.Commands { }); cgb.CreateCommand(Module.Prefix + "voicepresence") - .Description("Toggles logging to this channel whenever someone joins or leaves a voice channel you are in right now. BOT OWNER ONLY. SERVER OWNER ONLY.") + .Description("Toggles logging to this channel whenever someone joins or leaves a voice channel you are in right now. **Owner Only!**") .Parameter("all", ParameterType.Optional) .AddCheck(SimpleCheckers.OwnerOnly()) .AddCheck(SimpleCheckers.ManageServer())