Features: Add clarifying example for usercolor.

master
Marc Egerton 2020-05-25 07:35:03 +01:00
parent bf88ee3e5c
commit bf65b0b968
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@ func (f *Features) handleUserColors(s *discordgo.Session, m *discordgo.MessageCr
for _, v := range f.Config.ColorRoles {
msgC += "<@&" + v.ID + ">\n"
}
msgC += "\n\nUse `" + f.Config.CommandKey + "color <color_name>` to set.\n"
msgC += "\n\nUse `" + f.Config.CommandKey + "color <color>` to set.\n"
msgC += "Example: `" + f.Config.CommandKey + "color red`.\n"
msg := f.CreateDefinedEmbed("User Colors", msgC, "", m.Author)