diff --git a/commands/voice/mindfulness.js b/commands/voice/mindfulness.js index 005989eb..575bc4a9 100644 --- a/commands/voice/mindfulness.js +++ b/commands/voice/mindfulness.js @@ -46,7 +46,8 @@ module.exports = class MindfulnessCommand extends Command { await reactIfAble(msg, this.client.user, '🔉'); for (const item of flow.data) { if (item.type !== 'quote') continue; - setTimeout(() => msg.say(item.text).catch(() => null), item.time * 1000); + const text = item.text.replace(/\[pause \d+\]/gi, ' '); + setTimeout(() => msg.say(text).catch(() => null), item.time * 1000); } return null; } catch (err) { diff --git a/package.json b/package.json index 4129befa..2bb75577 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "131.3.1", + "version": "131.3.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {