mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-21 22:55:37 +01:00
server: send command usage to logging channel
This commit is contained in:
parent
35a3204866
commit
e3c51adf20
@ -186,7 +186,7 @@ client.on('messageCreate', async (message) => {
|
||||
|
||||
// Check by the name of the command.
|
||||
const cachedModule = cachedModules[`${cmd.toLowerCase()}`];
|
||||
let quoteResponse = null;
|
||||
let quoteResponse: { reply: string; } | null = null;
|
||||
// Check by the quotes in the configuration.
|
||||
if (!cachedModule) quoteResponse = state.responses.quotes[cmd];
|
||||
if (!cachedModule && !quoteResponse) return; // Not a valid command.
|
||||
@ -203,15 +203,22 @@ client.on('messageCreate', async (message) => {
|
||||
}
|
||||
|
||||
logger.info(`${message.author.username} ${message.author} [Channel: ${message.channel}] executed command: ${message.content}`);
|
||||
await message.delete();
|
||||
|
||||
const executeModule = async () => {
|
||||
try {
|
||||
if (cachedModule) {
|
||||
await cachedModule.command(message);
|
||||
} else if (cachedModules.quote) {
|
||||
await cachedModules.quote.command(message, quoteResponse?.reply);
|
||||
} else if (cachedModules.quote && quoteResponse) {
|
||||
await cachedModules.quote.command(message, quoteResponse.reply);
|
||||
}
|
||||
} catch (err) { logger.error(err); }
|
||||
};
|
||||
await Promise.all(
|
||||
[
|
||||
state.logChannel?.send(`${message.author.username} ${message.author.id} [Channel: ${message.channel}] executed command: \`${message.content}\``),
|
||||
message.delete(),
|
||||
executeModule()
|
||||
]
|
||||
);
|
||||
} else if (!message.author.bot) {
|
||||
// This is a normal channel message.
|
||||
await Promise.all(
|
||||
|
Loading…
Reference in New Issue
Block a user