Skip to content

Commit

Permalink
Remove word extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
hhvrc committed Sep 12, 2024
1 parent 96aa814 commit fd68f2b
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions DiscordBot/MessageHandler/MessageHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ namespace OpenShock.DiscordBot.MessageHandler;
public sealed class MessageHandler
{
private static readonly Dictionary<string, float> _containedProfanities = new() {
{ "arduino", 0.2f },
{ "bastard", 0.4f },
{ "bitch", 0.5f },
{ "cocksucker", 0.9f },
{ "cunt", 0.5f },
{ "damnit", 0.3f },
{ "dick", 0.6f },
{ "penis", 0.5f },
{ "pishock", 0.2f },
{ "pussy", 0.5f },
{ "retard", 1.0f },
{ "shit", 0.3f },
{ "slut", 0.6f },
{ "fuck", 0.3f },
{ "arduino", 0.2f },
{ "bastard", 0.4f },
{ "bitch", 0.5f },
{ "cocksuck", 0.9f },
{ "cunt", 0.5f },
{ "damnit", 0.3f },
{ "dick", 0.6f },
{ "penis", 0.5f },
{ "pishock", 0.2f },
{ "pussy", 0.5f },
{ "retard", 1.0f },
{ "shit", 0.3f },
{ "slut", 0.6f },
{ "fuck", 0.3f },
};

private static readonly Dictionary<string, float> _standaloneProfanities = new() {
Expand Down

0 comments on commit fd68f2b

Please sign in to comment.