Global error listener

How would I make a listener that checks for any slash command error and returns a reply?
Solution:
```ts @ApplyOptions<Listener.Options>({ name: "CoreChatInputCommandError", event: "chatInputCommandError" })...
Jump to solution
3 Replies
alqm
alqmOP2d ago
Basically catches literally anything not just preconditions
Solution
čamdžić
čamdžić2d ago
@ApplyOptions<Listener.Options>({
name: "CoreChatInputCommandError",
event: "chatInputCommandError"
})
export class BotListener extends Listener<typeof Events.ChatInputCommandError> {
override run() {

}
}
@ApplyOptions<Listener.Options>({
name: "CoreChatInputCommandError",
event: "chatInputCommandError"
})
export class BotListener extends Listener<typeof Events.ChatInputCommandError> {
override run() {

}
}
čamdžić
čamdžić2d ago
something like this you need to add name & event in case loadDefaultErrorListeners is false i keep that on true or same event will trigger twice

Did you find this page helpful?