first: change time format

This commit is contained in:
Chris Sexton 2018-03-28 03:29:42 -04:00
parent 0357e59858
commit f164530359
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ func (p *FirstPlugin) announceFirst(message msg.Message) {
c := message.Channel c := message.Channel
if p.First != nil { if p.First != nil {
p.Bot.SendMessage(c, fmt.Sprintf("%s had first at %s with the message: \"%s\"", p.Bot.SendMessage(c, fmt.Sprintf("%s had first at %s with the message: \"%s\"",
p.First.nick, p.First.time.Format(time.Kitchen), p.First.body)) p.First.nick, p.First.time.Format("15:04"), p.First.body))
} }
} }