mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-22 11:54:39 +01:00
Fix chasing shadows (mostly)
This commit is contained in:
@@ -111,7 +111,9 @@ public class QuestManager extends BasePlayerManager {
|
||||
30700, // Quest which is responsible for unlocking Crash Course.
|
||||
30800, // Quest which is responsible for unlocking Sparks Amongst the Pages.
|
||||
|
||||
47001, 47002, 47003, 47004
|
||||
47001, 47002, 47003, 47004,
|
||||
|
||||
2010103, 2010144 // Prologue Act 2: Chasing Shadows
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,7 +53,8 @@ public class ExecNotifyGroupLua extends QuestExecHandler {
|
||||
? EventType.EVENT_QUEST_FINISH
|
||||
: EventType.EVENT_QUEST_START;
|
||||
scriptManager.callEvent(
|
||||
new ScriptArgs(groupId, eventType, quest.getSubQuestId())
|
||||
new ScriptArgs(groupId, eventType, quest.getSubQuestId(),
|
||||
quest.getState() == QuestState.QUEST_STATE_FINISHED ? 1 : 0)
|
||||
.setEventSource(quest.getSubQuestId()));
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user