From: Jackson <9527380+Jaksuhn@users.noreply.github.com> Date: Wed, 5 Feb 2025 22:35:13 +0000 (+0100) Subject: Update EventInfoComponent.cs X-Git-Tag: v4.20~18^2~1 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=f72fafbf6a3668cdb2eb3b106182bbb92734cb7d;p=Questionable.git Update EventInfoComponent.cs --- diff --git a/Questionable/Windows/QuestComponents/EventInfoComponent.cs b/Questionable/Windows/QuestComponents/EventInfoComponent.cs index 48c37f1d..27165d69 100644 --- a/Questionable/Windows/QuestComponents/EventInfoComponent.cs +++ b/Questionable/Windows/QuestComponents/EventInfoComponent.cs @@ -139,7 +139,7 @@ internal sealed class EventInfoComponent public IEnumerable GetCurrentlyActiveEventQuests() { return _eventQuests - .Where(x => x.EndsAtUtc <= DateTime.UtcNow) + .Where(x => x.EndsAtUtc >= DateTime.UtcNow) .SelectMany(x => x.QuestIds); }