mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 08:20:58 -05:00
Delete unused command
This commit is contained in:
parent
92ff63f36e
commit
ec19b159e8
@ -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')
|
||||
}
|
Loading…
Reference in New Issue
Block a user