fix: GuildEmoji#clone

This commit is contained in:
Lewdcario
2018-04-25 18:42:51 -05:00
parent 30d43efa54
commit 64caa33594

View File

@@ -40,7 +40,7 @@ class GuildEmoji extends Emoji {
_clone() { _clone() {
const clone = super._clone(); const clone = super._clone();
clone.roles = this.roles.clone(); clone._roles = this._roles.slice();
return clone; return clone;
} }