From f72fafbf6a3668cdb2eb3b106182bbb92734cb7d Mon Sep 17 00:00:00 2001 From: Jackson <9527380+Jaksuhn@users.noreply.github.com> Date: Wed, 5 Feb 2025 23:35:13 +0100 Subject: [PATCH] Update EventInfoComponent.cs --- Questionable/Windows/QuestComponents/EventInfoComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Questionable/Windows/QuestComponents/EventInfoComponent.cs b/Questionable/Windows/QuestComponents/EventInfoComponent.cs index 48c37f1db..27165d69f 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); }