feat(Speaking): add PRIORITY_SPEAKING bit (#3680)

This commit is contained in:
SpaceEEC
2020-01-13 14:58:40 +01:00
committed by Amish Shah
parent f74ae12d6a
commit b5825c33b0
2 changed files with 3 additions and 1 deletions

View File

@@ -13,12 +13,14 @@ class Speaking extends BitField {}
* Numeric speaking flags. All available properties:
* * `SPEAKING`
* * `SOUNDSHARE`
* * `PRIORITY_SPEAKING`
* @type {Object}
* @see {@link https://discordapp.com/developers/docs/topics/voice-connections#speaking}
*/
Speaking.FLAGS = {
SPEAKING: 1 << 0,
SOUNDSHARE: 1 << 1,
PRIORITY_SPEAKING: 1 << 2,
};
module.exports = Speaking;