From 5fcda73d9f383bb27f8b9f141921b6f0b7e25b4d Mon Sep 17 00:00:00 2001 From: That_Guy977 <72870724+That-Guy977@users.noreply.github.com> Date: Thu, 2 Dec 2021 20:29:21 +0700 Subject: [PATCH] fix(GuildChannel): default to `this.rawPosition` in `clone()` (#7057) --- src/structures/GuildChannel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/GuildChannel.js b/src/structures/GuildChannel.js index 40beb25f5..14dc77df4 100644 --- a/src/structures/GuildChannel.js +++ b/src/structures/GuildChannel.js @@ -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, });