From fa31c2dc4d4ca7fe40fb93fa3fd86253e1f71cd3 Mon Sep 17 00:00:00 2001 From: Melissa Date: Fri, 17 Jan 2020 23:04:38 +0000 Subject: [PATCH] Changed buyquote to requestquote --- DiscordBot/Modules/Public/FunModule.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/DiscordBot/Modules/Public/FunModule.cs b/DiscordBot/Modules/Public/FunModule.cs index f9f8c4a..d522336 100644 --- a/DiscordBot/Modules/Public/FunModule.cs +++ b/DiscordBot/Modules/Public/FunModule.cs @@ -199,7 +199,7 @@ public async Task GenerateQuote() } } - [Command("buyquote"), Summary("Request a quote to be added for a price.")] + [Command("requestquote"), Summary("Request a quote to be added for a price."), Alias("buyquote")] public async Task RequestToAddQuote([Remainder]string quote = null) { if (Guild.Load(Context.Guild.Id).QuotesEnabled) @@ -216,8 +216,9 @@ public async Task RequestToAddQuote([Remainder]string quote = null) if (quote == null) { await ReplyAsync("**Syntax:** " + - Guild.Load(Context.Guild.Id).Prefix + "buyquote [quote]\n```" + - "**Information:**\n" + + Guild.Load(Context.Guild.Id).Prefix + "requestquote [quote]\n" + + "**Alias:** " + Guild.Load(Context.Guild.Id).Prefix + "buyquote [quote]\n```" + + "**Information:**\n" + "-----------------------------\n" + "• Your quote will not be added instantly to the list. A staff member must first verify that it is safe to put on the list.\n" + "```");