This repository has been archived on 2024-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
discord.js-rr-bot/Src/Commands/ContextMenus/LogMessage.js
2022-06-18 23:28:38 -04:00

11 lines
No EOL
392 B
JavaScript

module.exports = {
name: "log",
type: "MESSAGE",
run: async(client, interaction, container) => {
console.log(interaction.channel.messages.cache.get(interaction.targetId) ?? await interaction.channel.messages.fetch(interaction.targetId))
interaction.reply({
content: "Logged message to console.",
ephemeral: true
})
}
}