diff --git a/plugins/factoid.go b/plugins/factoid.go index 61a5519..95b1412 100644 --- a/plugins/factoid.go +++ b/plugins/factoid.go @@ -159,7 +159,7 @@ func (p *FactoidPlugin) trigger(message bot.Message) bool { return true } r := strings.NewReplacer("'", "", "\"", "", ",", "", ".", "", ":", "", - "?", "") + "?", "", "!", "") if ok, fact := p.findTrigger(r.Replace(message.Body)); ok { p.sayFact(message, *fact) return true