Webpack build for branch master: 7eb9e65c41

This commit is contained in:
Travis CI 2017-07-26 08:08:04 +00:00
parent 3cbc77eee4
commit c1961e7804
2 changed files with 2 additions and 2 deletions

View file

@ -23505,7 +23505,7 @@ class Client extends EventEmitter {
get emojis() { get emojis() {
const emojis = new Collection(); const emojis = new Collection();
for (const guild of this.guilds.values()) { for (const guild of this.guilds.values()) {
for (const emoji of guild.emojis.values()) emojis.set(emoji.id, emoji); if (guild.available) for (const emoji of guild.emojis.values()) emojis.set(emoji.id, emoji);
} }
return emojis; return emojis;
} }

File diff suppressed because one or more lines are too long