From 384b0ca622aecd1a48e0fdce871eee1b4cbe02e2 Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Sun, 28 Jan 2018 04:26:20 -0800 Subject: [PATCH] Added normal quotation mark to list of aliases, removed single quote mark --- src/Discord.Net.Commands/CommandServiceConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.Commands/CommandServiceConfig.cs b/src/Discord.Net.Commands/CommandServiceConfig.cs index c3f56a8da..4401df965 100644 --- a/src/Discord.Net.Commands/CommandServiceConfig.cs +++ b/src/Discord.Net.Commands/CommandServiceConfig.cs @@ -17,7 +17,7 @@ public bool ThrowOnError { get; set; } = true; /// List of aliases for string parsing - public char[] QuotationMarkAliases { get; set; } = new char[] { '“', '”', '\'', '«', '»', '‹', '›' }; + public char[] QuotationMarkAliases { get; set; } = new char[] { '\"', '“', '”', '\'', '«', '»', '‹', '›' }; /// Determines whether extra parameters should be ignored. public bool IgnoreExtraArgs { get; set; } = false;