diff --git a/commands/moderation/clear-channel.js b/commands/moderation/clear-channel.js index 94014261..6bd906b5 100644 --- a/commands/moderation/clear-channel.js +++ b/commands/moderation/clear-channel.js @@ -21,6 +21,7 @@ module.exports = class ClearChannelCommand extends Command { if (!msg.channel.deletable) return msg.say('This channel cannot be deleted.'); const channel = await msg.channel.clone(); if (msg.channel.parent) await channel.setParent(msg.channel.parent); + await channel.setPosition(msg.channel.rawPosition); await msg.channel.delete(); return null; }