There was an error while loading. Please reload this page.
1 parent 0078401 commit 3113f3aCopy full SHA for 3113f3a
1 file changed
DiscordBot/Modules/TipModule.cs
@@ -180,11 +180,12 @@ public async Task ListTips(params string[] keywords)
180
var termList = new List<string>();
181
foreach (var tip in terms.OrderBy(k => k))
182
termList.Add(tip);
183
+ floodCount = 8;
184
while (termList.Count > 0)
185
{
186
int count = termList.Count;
- if (count > 150)
187
- count = 150-10;
+ if (count > floodCount)
188
+ count = floodCount-2;
189
string keywordList = "Keywords: ";
190
for (int i = 0; i < count; i++)
191
0 commit comments