1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-04 04:01:42 +00:00

beers: add dynamic drinking word feature

This commit is contained in:
Chris Sexton 2021-02-01 15:18:36 -05:00
parent 671859225b
commit d75acccee9

View File

@ -154,7 +154,8 @@ func (p *BeersPlugin) register() {
return true return true
}}, }},
{Kind: bot.Message, IsCmd: true, {Kind: bot.Message, IsCmd: true,
Regex: regexp.MustCompile(`(?i)^imbibe$`), Regex: regexp.MustCompile(`(?i)^` +
strings.Join(p.c.GetArray("beers.imbibewords", []string{"imbibe", "quaff"}), "|") + `$`),
Handler: func(r bot.Request) bool { Handler: func(r bot.Request) bool {
p.addBeers(r.Msg.User.Name, 1) p.addBeers(r.Msg.User.Name, 1)
p.randomReply(r.Conn, r.Msg.Channel) p.randomReply(r.Conn, r.Msg.Channel)