diff --git a/PluralKit.Bot/Commands/SystemCommands.cs b/PluralKit.Bot/Commands/SystemCommands.cs index aa0be628..c49f0b78 100644 --- a/PluralKit.Bot/Commands/SystemCommands.cs +++ b/PluralKit.Bot/Commands/SystemCommands.cs @@ -190,7 +190,7 @@ namespace PluralKit.Bot.Commands var now = SystemClock.Instance.GetCurrentInstant(); - var rangeStart = PluralKit.Utils.ParseDateTime(durationStr); + var rangeStart = PluralKit.Utils.ParseDateTime(durationStr, true, system.Zone); if (rangeStart == null) throw Errors.InvalidDateTime(durationStr); if (rangeStart.Value.ToInstant() > now) throw Errors.FrontPercentTimeInFuture;