Skip to content
This repository has been archived by the owner on Jan 28, 2023. It is now read-only.

fix: #154 and #155 #156

Merged
merged 2 commits into from
Jan 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 53 additions & 51 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,55 @@
{
"prefix": "cm!",
"alexjs": {
"allow": [
"he-she",
"her-him",
"gal-guy",
"dad-mom",
"brother-sister",
"just",
"easy",
"simple",
"simply",
"fellowship",
"guys",
"ball",
"obviously",
"white",
"black",
"crashes",
"crash",
"clearly",
"host",
"japanese",
"chinese",
"american",
"fail",
"failed",
"of course",
"remains",
"ho",
"sos",
"illegal",
"canadian",
"basically",
"hard",
"harder",
"bomb",
"asian",
"white list",
"whitelist",
"color",
"period",
"hang",
"lies",
"obvious",
"special",
"remain",
"hook",
"uk"
]
}
"prefix": "cm!",
"alexjs": {
"allow": [
"he-she",
"her-him",
"gal-guy",
"dad-mom",
"brother-sister",
"just",
"easy",
"simple",
"simply",
"fellowship",
"guys",
"ball",
"obviously",
"white",
"black",
"crashes",
"crash",
"clearly",
"host",
"japanese",
"chinese",
"american",
"fail",
"failed",
"of course",
"remains",
"ho",
"sos",
"illegal",
"canadian",
"basically",
"hard",
"harder",
"bomb",
"asian",
"white list",
"whitelist",
"color",
"period",
"hang",
"lies",
"obvious",
"special",
"remain",
"hook",
"uk",
"whitespace",
"ques"
]
}
}
2 changes: 1 addition & 1 deletion src/Commands/restrictedWords.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ try {
if (message.content.toLowerCase().includes(words[i])) {
warningMessage =
'Please do not talk about other edTech startups here 🚫. If you think I did a mistake dont worry I am still under development, tag Community Manager and report this 🏷️. ';
message.author.send(customMessage);
message.author.send(warningMessage);
message.delete();
break;
}
Expand Down