mirror of https://github.com/velour/catbase.git
Only capture when it's a command, for eaburns-preferred tidiness
This commit is contained in:
parent
05fe7d5ecd
commit
bb1b97af93
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue