diff --git a/index.ts b/index.ts index 6f0e02f..8e394b5 100644 --- a/index.ts +++ b/index.ts @@ -25,9 +25,6 @@ import { FluxDispatcher } from "@webpack/common"; /** * SEXUAL ***/ const badVerbsSexual = ["fuck", "cum"]; const badNounsSexual = ["cunt", "yuri", "whore", "dick", "pussy", "slut", "tit", "cum", "cock", "blowjob", "sex", "ass", "furry", "bewbs", "boob", "booba", "boobies", "boobs", "booby", "porn", "pron", "pronhub", "r34", "rape", "raped", "raping", "rapist"]; -/** * FURRY ***/ -const badNounsFurry = ["", "meowing", "meow", "miau", "mreow", "mrow", "woof", "nya", ":pleading_catgirl", "purr", "oomf", "oomfie"]; -const badRegexesFurry = ["mr*eo*w+, mr+p, nya+, mrow+, purr+"]; /** * BRAINROT ***/ const badNounsBrainrot = ["mewing", "mew", "skibidi", "gyat", "gyatt", "rizzler", "nettspend", "boykisser", "ohio", "rizz", "tickle my toes bruh", "crack my spine like a whip", "hawk tuah"]; /** * SLURS ***/ @@ -58,11 +55,6 @@ export default definePlugin({ description: "Block sexual words/hornyspeak", default: true }, - blockFurryspeak: { - type: OptionType.BOOLEAN, - description: "Block furryspeak/meowing", - default: true - }, blockBrainrot: { type: OptionType.BOOLEAN, description: "Block things commonly said by Gen Alpha children", @@ -96,7 +88,6 @@ export default definePlugin({ getEnabledBadNouns() { const thingToReturn: string[] = []; if (this.settings.store.blockBrainrot) thingToReturn.push(...badNounsBrainrot); - if (this.settings.store.blockFurryspeak) thingToReturn.push(...badNounsFurry); if (this.settings.store.blockInsults) thingToReturn.push(...badNounsGeneral); if (this.settings.store.blockOthers) thingToReturn.push(...badNounsFun); if (this.settings.store.blockSexual) thingToReturn.push(...badNounsSexual);