Small fix to stop flooding

This commit is contained in:
Chris Sexton 2013-08-31 00:24:55 -04:00
parent 549ebc5f4e
commit 3a45156b9d
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ func NewBeersPlugin(bot *bot.Bot) *BeersPlugin {
}
p.LoadData()
for _, channel := range bot.Config.Channels {
go p.checkUntappd(channel)
go p.untappdLoop(channel)
}
return &p
}