diff --git a/src/structures/interfaces/InteractionResponses.js b/src/structures/interfaces/InteractionResponses.js index 85026e9beae5..dbe7c2327e8a 100644 --- a/src/structures/interfaces/InteractionResponses.js +++ b/src/structures/interfaces/InteractionResponses.js @@ -162,6 +162,7 @@ class InteractionResponses { * @returns {Promise} */ followUp(options) { + if (!this.deferred && !this.replied) return Promise.reject(new Error('INTERACTION_NOT_REPLIED')); return this.webhook.send(options); }