We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fe8e36 commit cb7fc61Copy full SHA for cb7fc61
1 file changed
Handlers/FunnyResponsesHandler.cs
@@ -64,7 +64,7 @@ private async Task HandleMessageAsync(SocketMessage messageParam)
64
string chosen = matches.Count == 1 ? matches[0] : matches[random.Next(matches.Count)];
65
66
// 50% chance to respond
67
- if (random.NextDouble() >= 0.50)
+ if (random.NextDouble() >= 0.10)
68
return;
69
70
string reply = chosen switch
0 commit comments