mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-21 12:44:58 +05:00
quote return
This commit is contained in:
parent
80c93c95e0
commit
4b89b8f447
4 changed files with 4 additions and 4 deletions
|
@ -34,7 +34,7 @@ class MessageCreate extends BaseEvent {
|
|||
if (message.guild) {
|
||||
await this.updateXp(message);
|
||||
|
||||
if (message.content.match(/(https|http):\/\/(ptb\.|canary\.)?(discord.com)\/(channels)\/\d+\/\d+\/\d+/g)) await this.handleLinkQuote(client, message);
|
||||
if (message.content.match(/(https|http):\/\/(ptb\.|canary\.)?(discord.com)\/(channels)\/\d+\/\d+\/\d+/g)) return await this.handleLinkQuote(client, message);
|
||||
if (message.data.guild.plugins.automod.enabled && !message.data.guild.plugins.automod.ignored.includes(message.channelId)) await this.checkAutomod(message);
|
||||
|
||||
await this.checkAfkStatus(client, message);
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
"MONITORING": {
|
||||
"DELETE": {
|
||||
"TITLE": "{{user}} deleted a message!",
|
||||
"TITLE": "{{user}}'s message was deleted!",
|
||||
"DESCRIPTION": "Message content was: ```{{content}}```\nChannel: {{channel}}\nTime created: {{time}}"
|
||||
},
|
||||
"UPDATE": {
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
"MONITORING": {
|
||||
"DELETE": {
|
||||
"TITLE": "{{user}} удалил сообщение!",
|
||||
"TITLE": "Сообщение {{user}} удалено!",
|
||||
"DESCRIPTION": "Содержимое сообщения было: ```{{content}}```\nКанал: {{channel}}\nВремя создания: {{time}}"
|
||||
},
|
||||
"UPDATE": {
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
|
||||
"MONITORING": {
|
||||
"DELETE": {
|
||||
"TITLE": "{{user}} видалив повідомлення!",
|
||||
"TITLE": "Повідомлення {{user}} видалено!",
|
||||
"DESCRIPTION": "Вміст повідомлення було: ```{{content}}```\nКанал: {{channel}}\nЧас створення: {{time}}"
|
||||
},
|
||||
"UPDATE": {
|
||||
|
|
Loading…
Reference in a new issue