From 46e9cf64f3d3635de872720c308e922b13ab8114 Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Mon, 29 Jan 2018 02:29:31 -0800 Subject: [PATCH] revert type of CommandServiceConfig QuotationMarkAliasMap to Dictionary --- 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 143b6fbb1..6de61f939 100644 --- a/src/Discord.Net.Commands/CommandServiceConfig.cs +++ b/src/Discord.Net.Commands/CommandServiceConfig.cs @@ -19,7 +19,7 @@ namespace Discord.Commands /// Collection of aliases that can wrap strings for command parsing. /// represents the opening quotation mark and the value is the corresponding closing mark. - public IReadOnlyDictionary QuotationMarkAliasMap { get; set; } + public Dictionary QuotationMarkAliasMap { get; set; } = new Dictionary() { {'\"', '\"' },