From 753b3f0fd315b5397759fed80b2e75453d0e0b0f Mon Sep 17 00:00:00 2001 From: NK Date: Fri, 31 Mar 2023 14:15:23 +0100 Subject: [PATCH] remove redutant code --- command/Utilities/simprate.js | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 command/Utilities/simprate.js diff --git a/command/Utilities/simprate.js b/command/Utilities/simprate.js deleted file mode 100644 index e5f8290..0000000 --- a/command/Utilities/simprate.js +++ /dev/null @@ -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(), - ], - }); - }, -};