diff options
| author | Christine Dodrill <xena@yolo-swag.com> | 2015-08-11 16:45:26 -0700 |
|---|---|---|
| committer | Christine Dodrill <xena@yolo-swag.com> | 2015-08-11 16:45:26 -0700 |
| commit | 412033967743a68abbc8359a486b02634b98b152 (patch) | |
| tree | 64be5327ae0392910c926eab44800d3d35023385 | |
| parent | 0379d786ddbe81ea9cb03a126a5ce560d516c4f9 (diff) | |
| download | x-412033967743a68abbc8359a486b02634b98b152.tar.xz x-412033967743a68abbc8359a486b02634b98b152.zip | |
Speak less often
| -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 f0e7b31..5dafda6 100644 --- a/irc/trolling/smartbot/main.go +++ b/irc/trolling/smartbot/main.go @@ -70,7 +70,7 @@ func main() { }) conn.AddCallback("PRIVMSG", func(e *irc.Event) { - if lastSpoken.Add(15 * time.Minute).Before(time.Now()) { + if lastSpoken.Add(5 * time.Minute).Before(time.Now()) { log.Println("It's been long enough that I can speak!") if rand.Int()%4 == 2 { |
