From 6aaa60606c1546addc3efbd6428cb4b7b9d5dc50 Mon Sep 17 00:00:00 2001 From: Daniel Mason Date: Tue, 11 Feb 2025 17:35:37 +1300 Subject: [PATCH] no bueno --- src/internal/bot/commands.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internal/bot/commands.go b/src/internal/bot/commands.go index ed18ef2..cd4151e 100644 --- a/src/internal/bot/commands.go +++ b/src/internal/bot/commands.go @@ -66,7 +66,7 @@ func showTopEmojis(s *discordgo.Session, i *discordgo.InteractionCreate) { } users := []string{} - msg += fmt.Sprintf(":%s: %d", k, v) + msg += fmt.Sprintf("%s: %d", k, v) for sk, sv := range topUsers { users = append(users, fmt.Sprintf("<@%s>: %d", sk, sv)) } @@ -100,7 +100,7 @@ func showTopUsers(s *discordgo.Session, i *discordgo.InteractionCreate) { users := []string{} msg += fmt.Sprintf("<@%s>: %d", k, v) for sk, sv := range topUsers { - users = append(users, fmt.Sprintf(":%s: %d", sk, sv)) + users = append(users, fmt.Sprintf("%s: %d", sk, sv)) } msg += " (" + strings.Join(users, ", ") + ")\n" }