mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
Improved how .bf and .br look like. Improved .slot result calculation performance (because of .slottest). Some string changes
This commit is contained in:
@@ -11,9 +11,9 @@ public sealed class BetflipGame
|
||||
_rng = new NadekoRandom();
|
||||
}
|
||||
|
||||
public BetflipResult Flip(int guess, decimal amount)
|
||||
public BetflipResult Flip(byte guess, decimal amount)
|
||||
{
|
||||
var side = _rng.Next(0, 1);
|
||||
var side = _rng.Next(0, 2);
|
||||
decimal won = 0;
|
||||
|
||||
if (side == guess)
|
||||
|
Reference in New Issue
Block a user