lambchop game using existing random (#5)

* fix dice lose print

* dice can now display rigged results

* lambchop

* removed GetRandomNext

* updated lambchop randomness to use GetRandomNumber()

* Change lambchop game timeout to 12 seconds
This commit is contained in:
CrackmaticSoftware
2025-12-09 19:07:39 +01:00
committed by GitHub
parent 5f709464b2
commit f385ff35c6
2 changed files with 417 additions and 2 deletions

View File

@@ -25,8 +25,7 @@ public class DiceCommand : ICommand
MaxInvocations = 3,
Window = TimeSpan.FromSeconds(15)
};
private static double _houseEdge = 0.05; // house edge hack? are we doing perfect 50/50 games?
private static double _houseEdge = 0.015; // house edge hack?
public async Task RunCommand(ChatBot botInstance, MessageModel messagen, UserDbModel user, GroupCollection arguments,
CancellationToken ctx)