1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00

Remove gif filter in mp-mod-chat

This commit is contained in:
toast-ts 2023-12-30 22:26:31 +11:00
parent b00baccf3c
commit 4a29ccf97f

View File

@ -33,7 +33,6 @@ export default class MessageCreate {
if (message.guildId === client.config.dcServer.id && !automodded) client.userLevels.messageIncremental(message.author.id); if (message.guildId === client.config.dcServer.id && !automodded) client.userLevels.messageIncremental(message.author.id);
// Mop gifs from banned channels without Monster having to mop them. // Mop gifs from banned channels without Monster having to mop them.
const bannedChannels = [ const bannedChannels = [
'516344221452599306', // #mp-moderators
'742324777934520350', // #discord-moderators '742324777934520350', // #discord-moderators
] ]
if (['tenor.com/view', 'giphy.com/gifs', 'giphy.com/media'].some(e=>message.content.toLowerCase().includes(e)) && bannedChannels.includes(message.channelId)) message.reply('Gifs are not allowed in this channel.').then(()=>message.delete()) if (['tenor.com/view', 'giphy.com/gifs', 'giphy.com/media'].some(e=>message.content.toLowerCase().includes(e)) && bannedChannels.includes(message.channelId)) message.reply('Gifs are not allowed in this channel.').then(()=>message.delete())