From e13a257a70221bdcd57f8a4080ca6275777f8f3a Mon Sep 17 00:00:00 2001 From: opti21 <40129778+opti21@users.noreply.github.com> Date: Tue, 26 Apr 2022 12:50:08 -0500 Subject: [PATCH] fix: Add aliases for current song --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index c27d99a..621e52d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -362,7 +362,7 @@ twitch.on("message", async (channel, tags, message, self) => { return; } - if (command === "song") { + if (command === "song" || command === "cs" || command === "currentsong") { const queue = await getQueue(); if (!queue) { if (growthbook.isOn("bot-talk")) { @@ -405,7 +405,7 @@ twitch.on("message", async (channel, tags, message, self) => { if (command === "save") { if (growthbook.isOn("bot-talk")) { - twitch.say(channel, "15 minutes can save you 15% on car insurace"); + twitch.say(channel, "Coming Soon... PauseChamp"); } return; }