mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
Flip the numbers around for #88
This commit is contained in:
@@ -48,10 +48,10 @@ public class RouletteCommand : ICommand
|
||||
private ApplicationDbContext _dbContext = new();
|
||||
|
||||
// European Roulette wheel configuration
|
||||
private static readonly HashSet<int> RedNumbers = new()
|
||||
private static readonly HashSet<int> BlackNumbers = new()
|
||||
{ 1, 3, 5, 7, 9, 12, 14, 16, 18, 19, 21, 23, 25, 27, 30, 32, 34, 36 };
|
||||
|
||||
private static readonly HashSet<int> BlackNumbers = new()
|
||||
private static readonly HashSet<int> RedNumbers = new()
|
||||
{ 2, 4, 6, 8, 10, 11, 13, 15, 17, 20, 22, 24, 26, 28, 29, 31, 33, 35 };
|
||||
|
||||
public async Task RunCommand(ChatBot botInstance, MessageModel message, UserDbModel user, GroupCollection arguments,
|
||||
|
||||
Reference in New Issue
Block a user