29 lines
795 B
JavaScript
29 lines
795 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
const { DebugBuilder } = require("../utilities/debugBuilder");
|
|
const log = new DebugBuilder("server", "ping");
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('ping')
|
|
.setDescription('Replies with your input!'),
|
|
/*
|
|
.addStringOption(option =>
|
|
option.setName('input')
|
|
.setDescription('The input to echo back')
|
|
.setRequired(false)
|
|
.addChoices()),
|
|
*/
|
|
example: "ping",
|
|
isPrivileged: false,
|
|
requiresTokens: false,
|
|
defaultTokenUsage: 0,
|
|
deferInitialReply: false,
|
|
async execute(interaction) {
|
|
try{
|
|
await interaction.channel.send('**Pong.**'); // TODO - Add insults as the response to this command
|
|
}catch(err){
|
|
log.ERROR(err)
|
|
//await interaction.reply(err.toString());
|
|
}
|
|
}
|
|
}; |