From 9843ae64eebfefbec51fcb577400861a5d3ac451 Mon Sep 17 00:00:00 2001 From: That_Guy977 Date: Thu, 2 Dec 2021 18:18:13 +0700 Subject: [PATCH] fix(GuildChannel): default to `this.rawPosition` in `clone()` --- 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 40beb25f5fa7..14dc77df494f 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, });