added /forceevaluate

master
Chloe Fontenot 🏳️‍⚧️ 2023-04-09 22:41:05 +07:00
parent 9d7170f3e8
commit c7281e6c21
1 changed files with 1 additions and 1 deletions

@ -12,7 +12,7 @@ module.exports = {
async execute(interaction, client) { async execute(interaction, client) {
var messageId = interaction.options.getString('messageid'); var messageId = interaction.options.getString('messageid');
const messagefromId = await client.channels.cache.get(interaction.channel.id).messages.fetch(messageId); const messagefromId = await client.channels.cache.get(interaction.channel.id).messages.fetch(messageId);
global.checkMessage(messagefromId); global.checkMessage(messagefromId, true);
console.log("User " + interaction.user.tag + " ran /forceevaluate"); console.log("User " + interaction.user.tag + " ran /forceevaluate");
}, },
}; };