From ef83f58da06cf7990330d2eb8c977c2fe9d14470 Mon Sep 17 00:00:00 2001 From: Ash Keel Date: Wed, 12 May 2021 19:28:22 +0200 Subject: [PATCH] bit less spammy pls --- twitchbot/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitchbot/commands.go b/twitchbot/commands.go index ca3cb43..8cfe99b 100644 --- a/twitchbot/commands.go +++ b/twitchbot/commands.go @@ -224,7 +224,7 @@ func cmdContributeGoal(bot *TwitchBot, message irc.PrivateMessage) { } newRemaining := selectedGoal.TotalGoal - selectedGoal.Contributed - bot.Client.Say(message.Channel, fmt.Sprintf("ShowOfHands %s contributed %d %s to \"%s\"!! Only %d %s left ShowOfHands!", message.User.DisplayName, points, bot.Loyalty.Config.Currency, selectedGoal.Name, newRemaining, bot.Loyalty.Config.Currency)) + bot.Client.Say(message.Channel, fmt.Sprintf("ShowOfHands %s contributed %d %s to \"%s\"!! Only %d %s left!", message.User.DisplayName, points, bot.Loyalty.Config.Currency, selectedGoal.Name, newRemaining, bot.Loyalty.Config.Currency)) // Check if goal was reached! // TODO Replace this with sub from loyalty system or something?