mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-24 05:15:39 +01:00
server: beautify command logging embed
This commit is contained in:
parent
1e191894ca
commit
04ef587bc9
@ -212,9 +212,16 @@ client.on('messageCreate', async (message) => {
|
|||||||
}
|
}
|
||||||
} catch (err) { logger.error(err); }
|
} catch (err) { logger.error(err); }
|
||||||
};
|
};
|
||||||
|
const commandUsageEmbed = new discord.EmbedBuilder()
|
||||||
|
.setAuthor({ name: message.author.username, iconURL: message.author.displayAvatarURL() })
|
||||||
|
.setDescription(`Command used in ${message.channel.toString()} [Jump To Message](${message.url})`)
|
||||||
|
.addFields({ name: 'Command', value: `\`\`\`\n${message.content}\n\`\`\``, inline: false })
|
||||||
|
.setTimestamp()
|
||||||
|
.setColor('Blue');
|
||||||
|
const userInfo = `${message.author?.toString()} (${message.author?.username}) (${message.author})`;
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
[
|
[
|
||||||
state.msglogChannel?.send(`${message.author.username} ${message.author.id} [Channel: ${message.channel}] executed command: \`${message.content}\``),
|
state.msglogChannel?.send({ content: userInfo, embeds: [commandUsageEmbed] }),
|
||||||
message.delete(),
|
message.delete(),
|
||||||
executeModule()
|
executeModule()
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user