diff --git a/KfChatDotNetBot/Commands/Kasino/MinesCommand.cs b/KfChatDotNetBot/Commands/Kasino/MinesCommand.cs index 31f1848..cba5e54 100644 --- a/KfChatDotNetBot/Commands/Kasino/MinesCommand.cs +++ b/KfChatDotNetBot/Commands/Kasino/MinesCommand.cs @@ -12,18 +12,18 @@ namespace KfChatDotNetBot.Commands.Kasino; public class MinesCommand : ICommand { public List Patterns => [ + //cashout + new Regex(@"^mines(? cashout)$", RegexOptions.IgnoreCase), + //refresh + new Regex(@"^mines(? refresh)$", RegexOptions.IgnoreCase), //attempting to start a game below here new Regex(@"^mines (?\d+(?:\.\d+)?) (?\d+) (?\d+) (?\d+)(? cashout|)$", RegexOptions.IgnoreCase), new Regex(@"^mines (?\d+(?:\.\d+)?) (?\d+) (?\d+) (?.+)(? cashout|)$", RegexOptions.IgnoreCase), //attempting to continue a game below here new Regex(@"^mines (?\d+)(? cashout|)$", RegexOptions.IgnoreCase), new Regex(@"^mines (?.+)(? cashout|)$", RegexOptions.IgnoreCase), - //cashout - new Regex(@"^mines(? cashout)$", RegexOptions.IgnoreCase), - //refresh - new Regex(@"^mines(? refresh)$", RegexOptions.IgnoreCase), //get info - new Regex("^mines") + new Regex("^mines$") ]; public string? HelpText => "!mines to play simple mines. !mines for advanced mines. Tool: https://i.ddos.lgbt/raw/UJ9Dty.html"; public UserRight RequiredRight => UserRight.Loser;