Skip to content

Commit

Permalink
Whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
TheTipo01 committed Mar 28, 2021
1 parent b8ea312 commit b822034
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ var (
}
toSend = fmt.Sprintf("Number of words: %d\n\n", cont) + toSend

sendEmbedInteractionFollowup(s, NewEmbed().SetTitle(s.State.User.Username).AddField("Words", toSend).
sendEmbedInteraction(s, NewEmbed().SetTitle(s.State.User.Username).AddField("Words", toSend).
SetColor(0x7289DA).MessageEmbed, i.Interaction)
},

Expand Down Expand Up @@ -224,7 +224,7 @@ var (
}
toSend = fmt.Sprintf("Number of messages: %d\n\n", cont) + toSend

sendEmbedInteractionFollowup(s, NewEmbed().SetTitle(s.State.User.Username).AddField("Messages", toSend).
sendEmbedInteraction(s, NewEmbed().SetTitle(s.State.User.Username).AddField("Messages", toSend).
SetColor(0x7289DA).MessageEmbed, i.Interaction)
},

Expand Down Expand Up @@ -285,7 +285,7 @@ var (
}
toSend = fmt.Sprintf("Number of characters per message sent: %d\n\n", cont) + toSend

sendEmbedInteractionFollowup(s, NewEmbed().SetTitle(s.State.User.Username).AddField("Characters per message", toSend).
sendEmbedInteraction(s, NewEmbed().SetTitle(s.State.User.Username).AddField("Characters per message", toSend).
SetColor(0x7289DA).MessageEmbed, i.Interaction)

},
Expand Down

0 comments on commit b822034

Please sign in to comment.