Browse Source

Cleaning

master
Gregory Rudolph 2 years ago
parent
commit
b323262213
  1. 4
      discordMessage.go

4
discordMessage.go

@ -22,9 +22,9 @@ func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) { @@ -22,9 +22,9 @@ func messageCreate(s *discordgo.Session, m *discordgo.MessageCreate) {
Session: s,
Parts: strings.Split(m.Content, " ")[2:],
})
} else {
} else if m.Author.ID == "302050872383242240" {
log.LogDebug("Not a failed bump.")
log.LogDebug(fmt.Sprintf("%+v: %+v", m.Author.ID, m.Content))
log.LogDebug(fmt.Sprintf("%+v: %+v", m.Author.ID, m.Embeds[0]))
}
if m.Author.ID == s.State.User.ID || m.Author.Bot {
return

Loading…
Cancel
Save