diff --git a/BirthdayBot/BirthdayBot.vbproj b/BirthdayBot/BirthdayBot.vbproj index e0f2411..ee811d8 100644 --- a/BirthdayBot/BirthdayBot.vbproj +++ b/BirthdayBot/BirthdayBot.vbproj @@ -4,7 +4,7 @@ Exe BirthdayBot netcoreapp2.0 - 1.0.4 + 1.0.5 1.0.4.0 Noiiko diff --git a/BirthdayBot/UserInterface/HelpInfoCommands.vb b/BirthdayBot/UserInterface/HelpInfoCommands.vb index 7ab4f55..60ad3b5 100644 --- a/BirthdayBot/UserInterface/HelpInfoCommands.vb +++ b/BirthdayBot/UserInterface/HelpInfoCommands.vb @@ -160,8 +160,7 @@ Friend Class HelpInfoCommands }, .Description = "Suggestions and feedback are always welcome. Please refer to the listing on Discord Bots " + "(discord.bots.gg) for information on reaching my personal server. I may not be available often, but I am happy to " + - "respond to feedback in due time." + vbLf + - "This bot remains very much in its early stages. Essential and quality-of-life features will be slowly added over time." + "respond to feedback in due time." } Dim verstr = Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(3) embed.AddField(New EmbedFieldBuilder With { diff --git a/BirthdayBot/UserInterface/ManagerCommands.vb b/BirthdayBot/UserInterface/ManagerCommands.vb index 179ba56..a392cfe 100644 --- a/BirthdayBot/UserInterface/ManagerCommands.vb +++ b/BirthdayBot/UserInterface/ManagerCommands.vb @@ -51,6 +51,11 @@ Friend Class ManagerCommands Return End If + If param.Length < 2 Then + Await reqChannel.SendMessageAsync($":x: See `{CommandPrefix}help-config` for information on how to use this command.") + Return + End If + ' Special case: Restrict 'modrole' to only guild managers If param(1).Equals("modrole", StringComparison.OrdinalIgnoreCase) And Not reqUser.GuildPermissions.ManageGuild Then Await reqChannel.SendMessageAsync(":x: This command may only be used by those with the `Manage Server` permission.")