Skip to content

Commit

Permalink
Add micropython
Browse files Browse the repository at this point in the history
  • Loading branch information
hhvrc committed Sep 11, 2024
1 parent 051e856 commit b78f3f5
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions DiscordBot/MessageHandler/MessageHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ public sealed class MessageHandler
private static readonly HashSet<string> _containedProfanitiesSet = new(_containedProfanities.Keys);

private static readonly Dictionary<string, float> _standaloneProfanities = new() {
{ "anal", 0.6f },
{ "cock", 0.5f },
{ "crap", 0.3f },
{ "cum", 0.4f },
{ "damn", 0.3f },
{ "piss", 0.3f },
{ "ass", 0.2f },
{ "anal", 0.6f },
{ "cock", 0.5f },
{ "crap", 0.3f },
{ "cum", 0.4f },
{ "damn", 0.3f },
{ "micropython", 0.5f },
{ "piss", 0.3f },
{ "ass", 0.2f },
};
private static readonly HashSet<string> _standaloneProfanitiesSet = new(_standaloneProfanities.Keys);

Expand Down

0 comments on commit b78f3f5

Please sign in to comment.