We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce4b621 commit 52025e0Copy full SHA for 52025e0
1 file changed
Handlers/FunnyResponsesHandler.cs
@@ -63,8 +63,8 @@ private async Task HandleMessageAsync(SocketMessage messageParam)
63
// If both are present pick one at random so we only ever reply once
64
string chosen = matches.Count == 1 ? matches[0] : matches[random.Next(matches.Count)];
65
66
- // 10% chance to respond
67
- if (random.NextDouble() >= 0.10)
+ // 25% chance to respond
+ if (random.NextDouble() >= 0.25)
68
return;
69
70
string reply = chosen switch
0 commit comments