From 570f39d4f87be4cb9f93e7ef077296d32901088e Mon Sep 17 00:00:00 2001 From: Kwoth Date: Wed, 29 Jan 2025 07:57:31 +0000 Subject: [PATCH] change: remind now has a 1 year max timeout, up from 2 months --- src/NadekoBot/Modules/Utility/Remind/RemindCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Utility/Remind/RemindCommands.cs b/src/NadekoBot/Modules/Utility/Remind/RemindCommands.cs index 59d2d4bc3..eaba24f8e 100644 --- a/src/NadekoBot/Modules/Utility/Remind/RemindCommands.cs +++ b/src/NadekoBot/Modules/Utility/Remind/RemindCommands.cs @@ -183,7 +183,7 @@ public partial class Utility { var time = DateTime.UtcNow + ts; - if (ts > TimeSpan.FromDays(60)) + if (ts > TimeSpan.FromDays(366)) return false; if (ctx.Guild is not null)