Update EventInfoComponent.cs
authorJackson <9527380+Jaksuhn@users.noreply.github.com>
Wed, 5 Feb 2025 22:35:13 +0000 (23:35 +0100)
committerJackson <9527380+Jaksuhn@users.noreply.github.com>
Wed, 5 Feb 2025 22:35:13 +0000 (23:35 +0100)
Questionable/Windows/QuestComponents/EventInfoComponent.cs

index 48c37f1dbda822e5a0deaad00c98fd83d4233ccc..27165d69fbf27406271c292eb07184baf06c3acf 100644 (file)
@@ -139,7 +139,7 @@ internal sealed class EventInfoComponent
     public IEnumerable<QuestId> GetCurrentlyActiveEventQuests()
     {
         return _eventQuests
-            .Where(x => x.EndsAtUtc <= DateTime.UtcNow)
+            .Where(x => x.EndsAtUtc >= DateTime.UtcNow)
             .SelectMany(x => x.QuestIds);
     }