Reduce rate limit window for dice

This commit is contained in:
barelyprofessional
2025-12-07 13:50:32 -06:00
parent cfdac05185
commit 312f93494d

View File

@@ -23,7 +23,7 @@ public class DiceCommand : ICommand
public RateLimitOptionsModel? RateLimitOptions => new() public RateLimitOptionsModel? RateLimitOptions => new()
{ {
MaxInvocations = 3, MaxInvocations = 3,
Window = TimeSpan.FromSeconds(30) 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.05; // house edge hack? are we doing perfect 50/50 games?