diff --git a/commands/voice/mindfulness.js b/commands/voice/mindfulness.js index 575bc4a9..506262a8 100644 --- a/commands/voice/mindfulness.js +++ b/commands/voice/mindfulness.js @@ -46,7 +46,7 @@ module.exports = class MindfulnessCommand extends Command { await reactIfAble(msg, this.client.user, '🔉'); for (const item of flow.data) { if (item.type !== 'quote') continue; - const text = item.text.replace(/\[pause \d+\]/gi, ' '); + const text = item.text.replace(/\[pause \d+\]/gi, ''); setTimeout(() => msg.say(text).catch(() => null), item.time * 1000); } return null;