mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 20:13:30 +01:00
feat(GuildMember): add manageable getter
This commit is contained in:
@@ -254,17 +254,24 @@ class GuildMember {
|
|||||||
return new Permissions(this, permissions);
|
return new Permissions(this, permissions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether the member is manageable in terms of role hierarchy by the client user
|
||||||
|
* @type {boolean}
|
||||||
|
* @readonly
|
||||||
|
*/
|
||||||
|
get manageable() {
|
||||||
|
if (this.user.id === this.guild.ownerID) return false;
|
||||||
|
if (this.user.id === this.client.user.id) return false;
|
||||||
|
return this.guild.me.highestRole.comparePositionTo(this.highestRole) > 0;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether the member is kickable by the client user
|
* Whether the member is kickable by the client user
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
* @readonly
|
* @readonly
|
||||||
*/
|
*/
|
||||||
get kickable() {
|
get kickable() {
|
||||||
if (this.user.id === this.guild.ownerID) return false;
|
return this.manageable && this.guild.me.permissions.has(Permissions.FLAGS.KICK_MEMBERS);
|
||||||
if (this.user.id === this.client.user.id) return false;
|
|
||||||
const clientMember = this.guild.member(this.client.user);
|
|
||||||
if (!clientMember.permissions.has(Permissions.FLAGS.KICK_MEMBERS)) return false;
|
|
||||||
return clientMember.highestRole.comparePositionTo(this.highestRole) > 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -273,11 +280,7 @@ class GuildMember {
|
|||||||
* @readonly
|
* @readonly
|
||||||
*/
|
*/
|
||||||
get bannable() {
|
get bannable() {
|
||||||
if (this.user.id === this.guild.ownerID) return false;
|
return this.manageable && this.guild.me.permissions.has(Permissions.FLAGS.BAN_MEMBERS);
|
||||||
if (this.user.id === this.client.user.id) return false;
|
|
||||||
const clientMember = this.guild.member(this.client.user);
|
|
||||||
if (!clientMember.permissions.has(Permissions.FLAGS.BAN_MEMBERS)) return false;
|
|
||||||
return clientMember.highestRole.comparePositionTo(this.highestRole) > 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user