1
0
mirror of https://github.com/velour/catbase.git synced 2025-04-03 11:49:55 +00:00

Removed the is/are function, all triggers must have a <> verb

This commit is contained in:
Chris Sexton 2012-11-11 11:08:37 -05:00
parent 1f88ffdea3
commit 7cba01dd20

View File

@ -60,7 +60,7 @@ func NewFactoidPlugin(bot *bot.Bot) *FactoidPlugin {
// findAction simply regexes a string for the action verb // findAction simply regexes a string for the action verb
func findAction(message string) string { func findAction(message string) string {
r, err := regexp.Compile("<.+?>| is | are ") r, err := regexp.Compile("<.+?>")
if err != nil { if err != nil {
panic(err) panic(err)
} }