shorter timer for status change

This commit is contained in:
da
2017-01-06 23:52:43 +01:00
parent 7f62e5e6fe
commit 6c1d4d4982
+1 -1
View File
@@ -590,7 +590,7 @@ func setIdleStatus(s *discordgo.Session) {
for {
s.UpdateStreamingStatus(1, "", "")
s.UpdateStatus(0, games[randomRange(0, len(games))])
time.Sleep(time.Duration(randomRange(10, 30)) * time.Minute)
time.Sleep(time.Duration(randomRange(5, 15)) * time.Minute)
}
}