mirror of
https://github.com/danbulant/discord.js
synced 2026-06-08 17:21:31 +00:00
Add Role.mentionable
This commit is contained in:
parent
126865384e
commit
529d7207da
2 changed files with 7 additions and 1 deletions
File diff suppressed because one or more lines are too long
|
|
@ -63,6 +63,12 @@ class Role {
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
*/
|
*/
|
||||||
this.managed = data.managed;
|
this.managed = data.managed;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether or not the role can be mentioned by anyone
|
||||||
|
* @type {boolean}
|
||||||
|
*/
|
||||||
|
this.mentionable = data.mentionable;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue