diff --git a/src/structures/interfaces/TextBasedChannel.js b/src/structures/interfaces/TextBasedChannel.js index 226f67b65..eb8296681 100644 --- a/src/structures/interfaces/TextBasedChannel.js +++ b/src/structures/interfaces/TextBasedChannel.js @@ -339,7 +339,7 @@ class TextBasedChannel { */ awaitMessages(filter, options = {}) { return new Promise((resolve, reject) => { - const collector = this.createCollector(filter, options); + const collector = this.createMessageCollector(filter, options); collector.once('end', (collection, reason) => { if (options.errors && options.errors.includes(reason)) { reject(collection);