2nd commit

This commit is contained in:
2023-03-11 20:16:50 +01:00
parent d7d6c0f399
commit 151498af20
8 changed files with 253 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
const { color } = require('../../options.json');
module.exports = {
name: 'guildapply',
description: 'Guild application button.',
type: 'button',
async execute(interaction) {
const user = interaction.user;
const guild = interaction.guild;
const embedColor = Number(color.replace("#", "0x"));
if (interaction.customId === 'guildapply') {
await interaction.reply({ content: 'Please wait...', ephemeral: true });
}
}
}