mirror of
https://github.com/RPCS3/discord-bot.git
synced 2025-03-03 07:17:05 +00:00
ignore case when matching tags
This commit is contained in:
parent
77c6981d92
commit
508fdd73f0
@ -36,7 +36,7 @@ namespace CompatBot.Commands
|
||||
{
|
||||
private static readonly Color[] DefaultColors = {Color.DeepSkyBlue, Color.DarkOliveGreen, Color.OrangeRed, };
|
||||
|
||||
private static readonly Dictionary<string, string[]> Reactions = new Dictionary<string, string[]>
|
||||
private static readonly Dictionary<string, string[]> Reactions = new Dictionary<string, string[]>(StringComparer.OrdinalIgnoreCase)
|
||||
{
|
||||
["cat"] = BotStats.GoodKot,
|
||||
["dog"] = BotStats.GoodDog,
|
||||
|
Loading…
x
Reference in New Issue
Block a user