19 lines
509 B
JavaScript
19 lines
509 B
JavaScript
import { SlashCommandBuilder } from 'discord.js';
|
|
|
|
export default {
|
|
data: new SlashCommandBuilder()
|
|
.setName('s')
|
|
.setDescription('What could this be 🤫')
|
|
.addStringOption(option =>
|
|
option.setName('something')
|
|
.setDescription('🤫')
|
|
.setRequired(true)),
|
|
category: 'secret',
|
|
async execute(interaction, args) {
|
|
const command = args.something;
|
|
|
|
if (command === 'levertowned') {
|
|
interaction.reply('Hello buddy bro <:youngtroll:488559163832795136> <@434762632004894746>');
|
|
}
|
|
},
|
|
};
|