mirror of
https://github.com/Art-Portal/April.git
synced 2024-11-16 11:37:37 +01:00
79407fd100
Removed video editing from the ticket options Set server description in ``` for partnerships Added server invite link for partnerships
12 lines
365 B
JavaScript
12 lines
365 B
JavaScript
const { guildId } = require('../config.json');
|
|
|
|
module.exports = {
|
|
name: 'messageCreate',
|
|
async execute(message, client) {
|
|
if (message.guild.id != guildId) return;
|
|
if (message.author.id == "718456289704804392" && message.content.toLowerCase().replace(/\? /).endsWith("quoi")){
|
|
message.reply({ content: "feur"})
|
|
}
|
|
}
|
|
}
|