mirror of
https://github.com/velour/catbase.git
synced 2025-04-04 04:01:42 +00:00
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 {
|
func (p *CaptureTheFlagPlugin) Message(message msg.Message) bool {
|
||||||
|
if !message.Command {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
lowercase := strings.ToLower(message.Body)
|
lowercase := strings.ToLower(message.Body)
|
||||||
tokens := strings.Fields(lowercase)
|
tokens := strings.Fields(lowercase)
|
||||||
numTokens := len(tokens)
|
numTokens := len(tokens)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user