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
1 changed files with 1 additions and 1 deletions

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)
} }