Flip the numbers around for #88

This commit is contained in:
barelyprofessional
2026-02-19 20:56:39 -06:00
parent 6967a81d73
commit 1c2b36b8b2

View File

@@ -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,