diff --git a/src/structures/Message.js b/src/structures/Message.js index 38714bea7..59b389f8c 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -605,7 +605,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; } }