From ba1bc1732eecc957c18e2b4c573cd67b9bf82dfe Mon Sep 17 00:00:00 2001 From: Toastie Date: Thu, 30 Jan 2025 16:09:52 +1300 Subject: [PATCH] remind now has a 1 year max timeout, up from 2 months --- src/EllieBot/Modules/Utility/Remind/RemindCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EllieBot/Modules/Utility/Remind/RemindCommands.cs b/src/EllieBot/Modules/Utility/Remind/RemindCommands.cs index 16da439..035f20f 100644 --- a/src/EllieBot/Modules/Utility/Remind/RemindCommands.cs +++ b/src/EllieBot/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)