Skip to content

Commit

Permalink
Changed buyquote to requestquote
Browse files Browse the repository at this point in the history
  • Loading branch information
MythicalCuddles committed Jan 17, 2020
1 parent eda5420 commit fa31c2d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions DiscordBot/Modules/Public/FunModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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" +
"```");
Expand Down

0 comments on commit fa31c2d

Please sign in to comment.