diff --git a/CompatBot/Commands/Minesweeper.cs b/CompatBot/Commands/Minesweeper.cs index 5ec91a35..629055cf 100644 --- a/CompatBot/Commands/Minesweeper.cs +++ b/CompatBot/Commands/Minesweeper.cs @@ -14,8 +14,9 @@ namespace CompatBot.Commands [Description("Generates a minesweeper field with specified parameters")] internal sealed class Minesweeper : BaseCommandModuleCustom { - private static readonly string[] Numbers = {"0️⃣", "1️⃣", "2️⃣", "3️⃣", "4️⃣", "5️⃣", "6️⃣", "7️⃣", "8️⃣", "9️⃣",}; - private static readonly string[] Bombs = {"💥", "🤡",}; + //private static readonly string[] Numbers = {"0️⃣", "1️⃣", "2️⃣", "3️⃣", "4️⃣", "5️⃣", "6️⃣", "7️⃣", "8️⃣", "9️⃣",}; + private static readonly string[] Numbers = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9",}; + private static readonly string[] Bombs = {"*", "◎"}; private static readonly int MaxBombLength; static Minesweeper() diff --git a/CompatBot/Program.cs b/CompatBot/Program.cs index ed88c1b3..b8f6d9b9 100644 --- a/CompatBot/Program.cs +++ b/CompatBot/Program.cs @@ -169,7 +169,7 @@ namespace CompatBot commands.RegisterCommands(); commands.RegisterCommands(); commands.RegisterCommands(); - //commands.RegisterCommands(); + commands.RegisterCommands(); commands.RegisterCommands(); if (!string.IsNullOrEmpty(Config.AzureComputerVisionKey))