Fixed a crash when loading into world.

This commit is contained in:
hondacrx
2022-07-11 15:38:24 -04:00
parent 3003d1351f
commit 357b1fed30
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ namespace Game.Entities
m_SeasonalQuestChanged = false;
var eventList = m_seasonalquests.LookupByKey(event_id);
if (eventList.Empty())
if (eventList == null)
return;
foreach (var (questId, completedTime) in eventList.ToList())