From bb1b97af9384d6198aac5348e8da7353f9075b02 Mon Sep 17 00:00:00 2001 From: skkiesel Date: Tue, 7 Nov 2017 08:54:07 -0500 Subject: [PATCH] Only capture when it's a command, for eaburns-preferred tidiness --- plugins/capturetheflag/capturetheflag.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/capturetheflag/capturetheflag.go b/plugins/capturetheflag/capturetheflag.go index b589758..c22efdc 100644 --- a/plugins/capturetheflag/capturetheflag.go +++ b/plugins/capturetheflag/capturetheflag.go @@ -77,6 +77,10 @@ func New(bot bot.Bot) *CaptureTheFlagPlugin { } func (p *CaptureTheFlagPlugin) Message(message msg.Message) bool { + if !message.Command { + return false + } + lowercase := strings.ToLower(message.Body) tokens := strings.Fields(lowercase) numTokens := len(tokens)