From ba84599b54e4007a93acaea9480770b351c522bf Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Tue, 6 Aug 2024 13:02:55 -0600 Subject: [PATCH] plugins/llama: o is optional, not a capture --- plugins/llama.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/llama.go b/plugins/llama.go index 1326109..6409d27 100644 --- a/plugins/llama.go +++ b/plugins/llama.go @@ -24,7 +24,7 @@ func (l *Llama) Descr() string { } func (l *Llama) Re() string { - return `(?i)^(o)?llama:(.+)$` + return `(?i)^o?llama:(.+)$` } func (l *Llama) Match(_, msg string) bool {