diff --git a/src/structures/Message.js b/src/structures/Message.js index 80c5786..0e37cdf 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -607,7 +607,7 @@ class Message extends Base { if (this.channel?.isThread()) { if (this.channel.archived) return false; if (this.channel.locked) { - const permissions = this.permissionsFor(this.client.user); + const permissions = this.channel.permissionsFor(this.client.user); if (!permissions?.has(Permissions.FLAGS.MANAGE_THREADS, true)) return false; } }