Skip to content

Commit

Permalink
add null checking to GuidedQuest
Browse files Browse the repository at this point in the history
  • Loading branch information
sonohoshi committed Sep 30, 2024
1 parent 7b3ec33 commit c7876d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nekoyume/Assets/_Scripts/UI/Module/GuidedQuest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ private void SubscribeEventDungeonQuest(WorldQuest eventDungeonQuest)
}
else
{
NcDebug.LogWarning($"[SubscribeEventDungeonQuest] HideAsClear Failed state:{state} questType:{_eventDungeonQuestCell.Quest.GetType()}");
NcDebug.LogWarning($"[SubscribeEventDungeonQuest] HideAsClear Failed state:{state} questType:{_eventDungeonQuestCell.Quest?.GetType()}");
_eventDungeonQuestCell.Hide();
}
}
Expand Down

0 comments on commit c7876d5

Please sign in to comment.