🩹 revert development changes
This commit is contained in:
parent
e93f604273
commit
766dac5c98
2 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
||||||
import { CommandInteraction } from "discord.js";
|
import { CommandInteraction } from "discord.js";
|
||||||
|
import logger from "../../../logger";
|
||||||
|
|
||||||
export const metadata = { guildOnly: false, ephemeral: false };
|
export const metadata = { guildOnly: false, ephemeral: false };
|
||||||
|
|
||||||
export const execute = async (interaction: CommandInteraction) => {
|
export const execute = async (interaction: CommandInteraction) => {
|
||||||
console.log("primary button clicked!");
|
logger.debug("primary button clicked!");
|
||||||
};
|
};
|
||||||
|
|
|
@ -15,7 +15,7 @@ export const options: IEventOptions = {
|
||||||
export const execute = async (oldMessage: Message, newMessage: Message) => {
|
export const execute = async (oldMessage: Message, newMessage: Message) => {
|
||||||
const { author, guild } = newMessage;
|
const { author, guild } = newMessage;
|
||||||
|
|
||||||
// await audits.execute(oldMessage, newMessage);
|
await audits.execute(oldMessage, newMessage);
|
||||||
|
|
||||||
logger?.silly(
|
logger?.silly(
|
||||||
`Message update event fired by ${author.tag} (${author.id}) in guild: ${guild?.name} (${guild?.id})`
|
`Message update event fired by ${author.tag} (${author.id}) in guild: ${guild?.name} (${guild?.id})`
|
||||||
|
|
Loading…
Add table
Reference in a new issue