mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 15:34:36 +01:00
not all stages have quest id
This commit is contained in:
@@ -91,8 +91,8 @@ namespace nksrv.LobbyServer.Msgs.Stage
|
||||
private static void DoQuestSpecificUserOperations(Utils.User user, int clearedStageId)
|
||||
{
|
||||
var quest = StaticDataParser.Instance.GetMainQuestForStageClearCondition(clearedStageId);
|
||||
if (quest == null) throw new Exception("quest not found for stage: " + clearedStageId);
|
||||
user.SetQuest(quest.id, true);
|
||||
if (quest != null)
|
||||
user.SetQuest(quest.id, true);
|
||||
|
||||
if (clearedStageId == 6000003)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user