more snark: that's not what gaslighting means

This commit is contained in:
Adam R Grey 2023-03-01 18:00:56 -05:00
parent 3d4064f8cb
commit 7364c38b3a

View File

@ -188,6 +188,10 @@ namespace silverworker_discord
} }
} }
if (Regex.IsMatch(msgText, "\\bgaslight(ing)?\\b", RegexOptions.IgnoreCase))
{
message.Channel.SendMessageAsync("that's not what gaslight means. Did you mean \"say something you believe is wrong\"?");
}
if (msgText.Contains("!qrplz ")) if (msgText.Contains("!qrplz "))
{ {
Features.qrify(message.Content.Substring("!qrplz ".Length + msgText.IndexOf("!qrplz ")), message); Features.qrify(message.Content.Substring("!qrplz ".Length + msgText.IndexOf("!qrplz ")), message);
@ -202,7 +206,7 @@ namespace silverworker_discord
} }
if (msgText.Contains("cognitive dissonance") == true) if (msgText.Contains("cognitive dissonance") == true)
{ {
message.ReplyAsync("that's not what cognitive dissonance means."); message.ReplyAsync("that's not what cognitive dissonance means. Did you mean \"hypocrisy\"?");
} }
if (Regex.IsMatch(msgText, "\\bthank (yo)?u\\b", RegexOptions.IgnoreCase) && if (Regex.IsMatch(msgText, "\\bthank (yo)?u\\b", RegexOptions.IgnoreCase) &&
(mentionedMe || Regex.IsMatch(msgText, "\\b(sh?tik)?bot\\b", RegexOptions.IgnoreCase))) (mentionedMe || Regex.IsMatch(msgText, "\\b(sh?tik)?bot\\b", RegexOptions.IgnoreCase)))