remove redutant code
This commit is contained in:
parent
a9d1bbc1e3
commit
753b3f0fd3
1 changed files with 0 additions and 33 deletions
|
@ -1,33 +0,0 @@
|
||||||
const { EmbedBuilder } = require("discord.js");
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
name: "simprate",
|
|
||||||
description: "Check how simp is the user",
|
|
||||||
usage: "(@User)",
|
|
||||||
category: "Fun",
|
|
||||||
options: [
|
|
||||||
{
|
|
||||||
type: 6,
|
|
||||||
name: "user",
|
|
||||||
description: "The user you want to see",
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
run: async (client, interaction, args) => {
|
|
||||||
const simp = Math.floor(Math.random() * 100);
|
|
||||||
const user = interaction.guild.members.cache.get(args[0]);
|
|
||||||
interaction.followUp({
|
|
||||||
embeds: [
|
|
||||||
new EmbedBuilder()
|
|
||||||
.setTitle(`${user.user.username}'s simp rate`)
|
|
||||||
.setDescription(`${user.user.username} is a ${simp}% simp`)
|
|
||||||
.setColor(client.color)
|
|
||||||
.setFooter({
|
|
||||||
text: `Made by ${client.author}`,
|
|
||||||
iconURL: client.user.displayAvatarURL(),
|
|
||||||
})
|
|
||||||
.setTimestamp(),
|
|
||||||
],
|
|
||||||
});
|
|
||||||
},
|
|
||||||
};
|
|
Loading…
Reference in a new issue