diff --git a/config.go b/config.go index b9c5aa7..e256bc6 100644 --- a/config.go +++ b/config.go @@ -62,7 +62,7 @@ func adminInteraction(s *discordgo.Session, m string) { admin, _ := s.GuildMember(config.GuildID, m) counter, ok := config.Stats[admin.User.ID] if !ok { - config.Stats[admin.User.ID] = 0 + config.Stats[admin.User.ID] = 1 } else { config.Stats[admin.User.ID] = counter + 1 }