fix(GuildChannel): default to this.rawPosition in clone() (#7057)

This commit is contained in:
That_Guy977
2021-12-02 20:29:21 +07:00
committed by GitHub
parent 552d89fd4e
commit 5fcda73d9f

View File

@@ -460,7 +460,7 @@ class GuildChannel extends Channel {
bitrate: this.bitrate,
userLimit: this.userLimit,
rateLimitPerUser: this.rateLimitPerUser,
position: this.position,
position: this.rawPosition,
reason: null,
...options,
});