Skip to content

Commit

Permalink
major melon
Browse files Browse the repository at this point in the history
  • Loading branch information
OOF2510 committed Jun 9, 2023
1 parent 7f82b33 commit d485668
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions cmds/fun/major-melon.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
const { SlashCommandBuilder, WebhookClient } = require("discord.js");
const { CommandInteraction, Client } = require("discord.js"),
Sequelize = require("sequelize");

module.exports = {
data: new SlashCommandBuilder()
.setName("major-melon")
.setDescription("MAJOR MELON."),
/**
* Executes the command
* @param {CommandInteraction} interaction
* @param {Client} client
* @param {*} config
* @param {Sequelize} db
* @param {Array} allowed
*/
async execute(interaction, client, config, db, allowed) {
let msg = interaction;

await msg.reply({
content: "MAJOR MELON.",
files: [
{
attachment: "https://media.discordapp.net/attachments/1021763955099717664/1116788316390563880/unknown-25-1.png",
name: "MAJOR_MELON.png",
}
]
})
},
};

0 comments on commit d485668

Please sign in to comment.