diff --git a/src/structures/GuildChannel.js b/src/structures/GuildChannel.js index 1ea0c9d45..1d28714ae 100644 --- a/src/structures/GuildChannel.js +++ b/src/structures/GuildChannel.js @@ -582,8 +582,7 @@ class GuildChannel extends Channel { * @returns {Promise} */ clone(options = {}) { - return this.guild.channels.create(options.name, { - name: this.name, + return this.guild.channels.create(options.name ?? this.name, { permissionOverwrites: this.permissionOverwrites, topic: this.topic, type: this.type,