fix(arabot): remove unnecessary once in events

This commit is contained in:
Anthony 2023-01-27 14:42:58 +00:00
parent 0e33019a98
commit 9a91d081e6
4 changed files with 0 additions and 4 deletions

View File

@ -25,7 +25,6 @@ class BanJoin extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
...options,
once: true,
event: 'guildMemberAdd',
});
}

View File

@ -24,7 +24,6 @@ class OldCommandDeniedListener extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
...options,
once: false,
event: 'messageCommandDenied',
});
}

View File

@ -24,7 +24,6 @@ class CommandDeniedListener extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
...options,
once: false,
event: 'chatInputCommandDenied',
});
}

View File

@ -27,7 +27,6 @@ class VerificationReady extends Listener {
public constructor(context: Listener.Context, options: Listener.Options) {
super(context, {
...options,
once: true,
event: 'guildMemberAdd',
});
}