From 9e3995a3acfe29039ebcaf5076fc092ce9e6dede Mon Sep 17 00:00:00 2001 From: Kwoth Date: Fri, 28 Oct 2016 01:56:51 +0200 Subject: [PATCH] Playing rotate goes off once per minute --- .../Modules/Administration/Commands/PlayingRotateCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Administration/Commands/PlayingRotateCommands.cs b/src/NadekoBot/Modules/Administration/Commands/PlayingRotateCommands.cs index 41d7201f..011f5812 100644 --- a/src/NadekoBot/Modules/Administration/Commands/PlayingRotateCommands.cs +++ b/src/NadekoBot/Modules/Administration/Commands/PlayingRotateCommands.cs @@ -67,7 +67,7 @@ namespace NadekoBot.Modules.Administration } finally { - await Task.Delay(15000); + await Task.Delay(TimeSpan.FromMinutes(1)); } } while (true); });