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

Delete unused command

This commit is contained in:
toast-ts 2023-09-30 07:28:11 +10:00
parent 30078c34fa
commit abf19a8b98

View File

@ -1,12 +0,0 @@
import Discord from 'discord.js';
import TClient from '../client.js';
export default {
run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
const embed = new client.embed().setColor(Math.floor(Math.random()*16777215));
embed.addFields({name: 'Hex code', value: '#'+embed.data.color.toString(16).toUpperCase()});
interaction.reply({embeds: [embed]});
},
data: new Discord.SlashCommandBuilder()
.setName('randomcolor')
.setDescription('Generate a random hex code')
}