aboutsummaryrefslogtreecommitdiff
path: root/src/listeners/client
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-17 10:25:46 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-07-17 10:25:46 -0400
commitd1724227abfb8f0fcd9e573f7e9772cf0be8257a (patch)
tree52c9dbae1fbbbd3c777d9c16ab643c477141ae21 /src/listeners/client
parent53d2b18f7f73d5696fb7cd86d1c164a790dfdcc3 (diff)
downloadtanzanite-d1724227abfb8f0fcd9e573f7e9772cf0be8257a.tar.gz
tanzanite-d1724227abfb8f0fcd9e573f7e9772cf0be8257a.tar.bz2
tanzanite-d1724227abfb8f0fcd9e573f7e9772cf0be8257a.zip
honestly no idea what I did at this point
Diffstat (limited to 'src/listeners/client')
-rw-r--r--src/listeners/client/interactionCreate.ts (renamed from src/listeners/client/interaction.ts)6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/listeners/client/interaction.ts b/src/listeners/client/interactionCreate.ts
index c848d15..1183004 100644
--- a/src/listeners/client/interaction.ts
+++ b/src/listeners/client/interactionCreate.ts
@@ -1,11 +1,11 @@
import { BushListener } from '@lib';
import { ButtonInteraction, CommandInteraction, Interaction, SelectMenuInteraction } from 'discord.js';
-export default class InteractionListener extends BushListener {
+export default class InteractionCreateListener extends BushListener {
public constructor() {
- super('interaction', {
+ super('interactionCreate', {
emitter: 'client',
- event: 'interaction',
+ event: 'interactionCreate',
category: 'client'
});
}