* Blackjack

* sync

* make BJ deck suffeling not OOB anymore

* tag !juice recipients

* lambchop RTP adjustment
This commit is contained in:
CrackmaticSoftware
2026-01-06 21:10:46 +01:00
committed by GitHub
parent 318241a58c
commit be669bf951
3 changed files with 4 additions and 4 deletions

View File

@@ -92,7 +92,7 @@ public static class BlackjackHelper
// Shuffle using Fisher-Yates
for (int i = deck.Count - 1; i > 0; i--)
{
int j = Money.GetRandomNumber(gambler, 0, i + 1, incrementMaxParam: false);
int j = Money.GetRandomNumber(gambler, 0, i + 1, incrementMaxParam:false);
(deck[i], deck[j]) = (deck[j], deck[i]);
}