sorting out inhibitor priorities

This commit is contained in:
Erik 2022-05-06 12:21:55 +03:00
parent 844e3f9baa
commit 07dc68ed1c
Signed by untrusted user: Navy.gif
GPG Key ID: 811EC0CD80E7E5FB
7 changed files with 7 additions and 7 deletions

View File

@ -5,7 +5,7 @@ class ChannelIgnore extends Inhibitor {
constructor(client) {
super(client, {
name: 'channelIgnore',
priority: 5,
priority: 9,
guild: true,
silent: true
});

View File

@ -5,7 +5,7 @@ class ClientPermissions extends Inhibitor {
constructor(client) {
super(client, {
name: 'clientPermissions',
priority: 11,
priority: 10,
guarded: true,
guild: true
});

View File

@ -5,7 +5,7 @@ class Disabled extends Inhibitor {
constructor(client) {
super(client, {
name: 'disabled',
priority: 9,
priority: 4,
silent: true
});
}

View File

@ -6,7 +6,7 @@ class GuildOnly extends Inhibitor {
super(client, {
name: 'guildOnly',
priority: 12,
priority: 2,
guarded: true
});

View File

@ -8,7 +8,7 @@ class Permissions extends Inhibitor {
super(client, {
name: 'permissions',
priority: 10,
priority: 5,
guarded: true,
guild: true
});

View File

@ -6,7 +6,7 @@ class Restricted extends Inhibitor {
super(client, {
name: 'restricted',
priority: 10,
priority: 3,
guarded: true
});

View File

@ -6,7 +6,7 @@ class Throttle extends Inhibitor {
super(client, {
name: 'throttle',
priority: 20
priority: 1
});
}