2 Commits

Author SHA1 Message Date
cb4bddf983 Bump version number 2022-11-29 21:00:36 +01:00
b1b087e32c Update reportEmbed wording 2022-11-29 21:00:09 +01:00
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "eu.astrogd.white-leopard", "name": "eu.astrogd.white-leopard",
"version": "1.1.0-alpha.1", "version": "1.1.0-alpha.2",
"description": "A Discord bot that checks channel names for blacklisted words and reverts the changes if necessary", "description": "A Discord bot that checks channel names for blacklisted words and reverts the changes if necessary",
"main": "build/index.js", "main": "build/index.js",
"scripts": { "scripts": {

View File

@ -36,8 +36,7 @@ export function getUserReportEmbed(guildName: string, channelName: string): Embe
embed.setColor(Color.STOPSIGN_RED); embed.setColor(Color.STOPSIGN_RED);
embed.setTitle(`${Emoji.SECURITY_CHALLENGE_FAILED} A channel you modified has been deleted`); embed.setTitle(`${Emoji.SECURITY_CHALLENGE_FAILED} A channel you modified has been deleted`);
embed.setDescription(`Hey there ${Emoji.WAVING} embed.setDescription(`Hey there ${Emoji.WAVING}
You just modified a channel on the ${guildName} server. \ Your channel (#${channelName}) on the "${guildName}" server contained a blacklisted word and was deleted automatically.
However, your channel name (#${channelName}) contained a word that is not allowed so your channel got deleted.
Please make sure to keep channel names friendly for everyone!`); Please make sure to keep channel names friendly for everyone!`);
return embed; return embed;