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

mayi: fix regex

This commit is contained in:
Chris Sexton 2021-12-17 08:45:52 -05:00
parent 9670e0e657
commit b325cfd5d5

View File

@ -13,7 +13,7 @@ type MayIPlugin struct {
c *config.Config c *config.Config
} }
var regex = regexp.MustCompile(`(?i)(may|can) (?P<who>\S+) (?P<what>.+)`) var regex = regexp.MustCompile(`(?i)^(may|can) (?P<who>\S+) (?P<what>.+)`)
func New(b bot.Bot) *MayIPlugin { func New(b bot.Bot) *MayIPlugin {
m := &MayIPlugin{ m := &MayIPlugin{