diff options
| -rw-r--r-- | irc/trolling/smartbot/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc/trolling/smartbot/main.go b/irc/trolling/smartbot/main.go index cac6c83..6fd0adf 100644 --- a/irc/trolling/smartbot/main.go +++ b/irc/trolling/smartbot/main.go @@ -74,7 +74,7 @@ func main() { if rand.Int()%4 == 2 { log.Printf("About to say something...") time.Sleep(time.Duration((rand.Int()%15)+4) * time.Second) - conn.Privmsg(e.Arguments[0], chain.Generate((rand.Int()%4)+2)) + conn.Privmsg(e.Arguments[0], chain.Generate((rand.Int()%15)+2)) } }) |
