bring back minesweeper, tho not as fancy

This commit is contained in:
13xforever
2021-08-23 20:44:59 +05:00
parent 64dce765de
commit 78d47349ca
2 changed files with 4 additions and 3 deletions

View File

@@ -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 = {"", "", "", "", "", "", "", "", "", "",};
private static readonly string[] Bombs = {"", "◎"};
private static readonly int MaxBombLength;
static Minesweeper()

View File

@@ -169,7 +169,7 @@ namespace CompatBot
commands.RegisterCommands<BotStats>();
commands.RegisterCommands<Syscall>();
commands.RegisterCommands<ForcedNicknames>();
//commands.RegisterCommands<Minesweeper>();
commands.RegisterCommands<Minesweeper>();
commands.RegisterCommands<Fortune>();
if (!string.IsNullOrEmpty(Config.AzureComputerVisionKey))