diff --git a/src/structure/client/Resolver.js b/src/structure/client/Resolver.js index 946c0f1..35d2e17 100644 --- a/src/structure/client/Resolver.js +++ b/src/structure/client/Resolver.js @@ -346,7 +346,7 @@ class Resolver { const match = resolveable.match(id); const [, ch] = match; - const channel = await this.client.channels.fetch(ch).catch((e) => { }); //eslint-disable-line no-empty, no-empty-function, no-unused-vars + const channel = await CM.fetch(ch).catch((e) => { }); //eslint-disable-line no-empty, no-empty-function, no-unused-vars if (channel && filter(channel)) resolved.push(channel); } else if (name.test(resolveable)) {