Skip to content

Commit

Permalink
fix: Add aliases for current song
Browse files Browse the repository at this point in the history
  • Loading branch information
opti21 committed Apr 26, 2022
1 parent 3e9dbef commit e13a257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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")) {
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit e13a257

Please sign in to comment.