Merge branch 'master' of git.dnix.de:an/flokati
continuous-integration/drone/push Build is passing Details

This commit is contained in:
an 2020-05-14 11:26:43 +02:00
commit 1cdd60d39e
1 changed files with 3 additions and 1 deletions

View File

@ -39,7 +39,9 @@ func init() {
}
func markovHandleMessage(m *Message) {
if strings.HasPrefix(m.Text, "!") {
return
}
tok := strings.Split(m.Text, " ")
if tok[0] == "!talk" {
if len(tok) < 2 {