From 5f1afddde2cc599442342083260a78fbce0404ff Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 1 Mar 2021 22:28:46 -0500 Subject: [PATCH] Fix --- commands/voice/mindfulness.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/voice/mindfulness.js b/commands/voice/mindfulness.js index a68644b6..e44701d8 100644 --- a/commands/voice/mindfulness.js +++ b/commands/voice/mindfulness.js @@ -44,7 +44,7 @@ module.exports = class MindfulnessCommand extends Command { dispatcher.once('finish', () => this.client.dispatchers.delete(msg.guild.id)); dispatcher.once('error', () => this.client.dispatchers.delete(msg.guild.id)); await reactIfAble(msg, this.client.user, '🔉'); - for (const item of body.data) { + for (const item of flow.data) { if (item.type !== 'text') continue; setTimeout(() => msg.say(item.text).catch(() => null), item.time * 1000); }