Only capture when it's a command, for eaburns-preferred tidiness

This commit is contained in:
skkiesel 2017-11-07 08:54:07 -05:00
parent 05fe7d5ecd
commit bb1b97af93
1 changed files with 4 additions and 0 deletions

View File

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