mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 03:53:29 +01:00
Merge master
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -114,8 +114,8 @@ class Guild {
|
|||||||
this.features = data.features;
|
this.features = data.features;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An array of guild emojis.
|
* A Collection of emojis that are in this Guild. The key is the emoji's ID, the value is the emoji.
|
||||||
* @type {Object[]}
|
* @type {Collection<string, Emoji>}
|
||||||
*/
|
*/
|
||||||
this.emojis = new Collection();
|
this.emojis = new Collection();
|
||||||
for (const emoji of data.emojis) this.emojis.set(emoji.id, new Emoji(this, emoji));
|
for (const emoji of data.emojis) this.emojis.set(emoji.id, new Emoji(this, emoji));
|
||||||
|
|||||||
Reference in New Issue
Block a user