Unknown Changes

This commit is contained in:
2022-07-03 19:29:17 +02:00
parent 70f536d8a4
commit 74ce54d861
13 changed files with 355 additions and 12 deletions

6
commands/config.sql Normal file
View File

@@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS `config` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`value` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -17,6 +17,7 @@ module.exports = {
.setTitle("Test Embed")
.setDescription(`Your test message: ${interaction.options.getString('message')}`)
.setImage(interaction.user.avatarURL({dynamic : true}))
const testRow = new Discord.MessageActionRow().addComponents(
new Discord.MessageButton()