From 0530322115465950cddaec96b22f72030055e6f5 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 2 Mar 2021 21:16:45 -0500 Subject: [PATCH] Just remove spaces --- 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 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;