From 953525021dcd19bf090017e52579b5c842aad267 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Mon, 17 Oct 2016 12:26:26 +0200 Subject: [PATCH] repeat can now go up to one week in minutes --- .../Modules/Administration/Commands/MessageRepeater.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Administration/Commands/MessageRepeater.cs b/src/NadekoBot/Modules/Administration/Commands/MessageRepeater.cs index 0a5d7a20..713fb7a2 100644 --- a/src/NadekoBot/Modules/Administration/Commands/MessageRepeater.cs +++ b/src/NadekoBot/Modules/Administration/Commands/MessageRepeater.cs @@ -123,7 +123,7 @@ namespace NadekoBot.Modules.Administration { var channel = (ITextChannel)imsg.Channel; - if (minutes < 1 || minutes > 1500) + if (minutes < 1 || minutes > 10080) return; if (string.IsNullOrWhiteSpace(message))