mirror of
https://github.com/idanoo/GoDiscMoji
synced 2025-07-01 18:32:15 +00:00
no bueno
This commit is contained in:
parent
178a3f576d
commit
6aaa60606c
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue