mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
bring back minesweeper, tho not as fancy
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user