Skip to content
This repository was archived by the owner on Nov 24, 2022. It is now read-only.

Commit 2bd8169

Browse files
Merge pull request #67 from jamesbt365/spam
Lower the spam theshold to catch more spam bots.
2 parents 84e6260 + af37276 commit 2bd8169

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

TabletBot.Common/Settings.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public sealed class Settings
2222
public ulong MutedRoleID { set; get; } = MUTED_ROLE_ID;
2323
public string CommandPrefix { set; get; } = "!";
2424
public uint GitHubIssueRefLimit { set; get; } = 3;
25-
public uint SpamThreshold { set; get; } = 3;
25+
public uint SpamThreshold { set; get; } = 2;
2626

2727
public LogLevel LogLevel { set; get; } = LogLevel.Debug;
2828

@@ -69,4 +69,4 @@ public async Task Overwrite()
6969
await Write(Platform.SettingsFile);
7070
}
7171
}
72-
}
72+
}

0 commit comments

Comments
 (0)