Skip to content

Commit

Permalink
feat: add hromomento slash command
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperchupuDev committed Mar 19, 2022
1 parent 3095625 commit f37c2d7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion commands/fun/hromomento.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
embeds: [{
title: 'hro momento',
image: {
url: 'https://tenor.com/view/bruh-momento-dance-breakdancing-gif-15163432'
url: 'https://c.tenor.com/jChba0HF5jcAAAAM/brro-momento.gif'
},
color: client.config.color
}]
Expand Down
15 changes: 15 additions & 0 deletions interactions/commands/hromomento.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
name: 'hromomento',

async execute(client, interaction) {
interaction.reply({
embeds: [{
title: 'hro momento',
image: {
url: 'https://c.tenor.com/jChba0HF5jcAAAAM/brro-momento.gif'
},
color: client.config.color
}]
});
}
};

0 comments on commit f37c2d7

Please sign in to comment.