diff --git a/lib/structures/NewsThreadChannel.js b/lib/structures/NewsThreadChannel.js index 7eb981f22..053074517 100644 --- a/lib/structures/NewsThreadChannel.js +++ b/lib/structures/NewsThreadChannel.js @@ -7,8 +7,8 @@ const ThreadChannel = require("./ThreadChannel"); * @extends ThreadChannel */ class NewsThreadChannel extends ThreadChannel { - constructor(data, guild, messageLimit) { - super(data, guild, messageLimit); + constructor(data, client, messageLimit) { + super(data, client, messageLimit); } } diff --git a/lib/structures/PrivateThreadChannel.js b/lib/structures/PrivateThreadChannel.js index f81f0e017..f865f1250 100644 --- a/lib/structures/PrivateThreadChannel.js +++ b/lib/structures/PrivateThreadChannel.js @@ -7,8 +7,8 @@ const ThreadChannel = require("./ThreadChannel"); * @extends ThreadChannel */ class PrivateThreadChannel extends ThreadChannel { - constructor(data, guild, messageLimit) { - super(data, guild, messageLimit); + constructor(data, client, messageLimit) { + super(data, client, messageLimit); } } diff --git a/lib/structures/PublicThreadChannel.js b/lib/structures/PublicThreadChannel.js index 1fe71ecc4..62cf74a86 100644 --- a/lib/structures/PublicThreadChannel.js +++ b/lib/structures/PublicThreadChannel.js @@ -7,8 +7,8 @@ const ThreadChannel = require("./ThreadChannel"); * @extends ThreadChannel */ class PublicThreadChannel extends ThreadChannel { - constructor(data, guild, messageLimit) { - super(data, guild, messageLimit); + constructor(data, client, messageLimit) { + super(data, client, messageLimit); } }