Remove manual autofinish for main quests. (#2162)

This commit is contained in:
Nazrin 2023-05-22 00:58:47 -07:00 committed by GitHub
parent 4ca172bf42
commit a48bc24aae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -182,9 +182,9 @@ public class GameMainQuest {
* of the main quest 353 - the character will not be able to leave place
* (return again and again)
*/
this.getChildQuests().values().stream()
.filter(p -> p.state != QuestState.QUEST_STATE_FINISHED)
.forEach(GameQuest::finish);
// this.getChildQuests().values().stream()
// .filter(p -> p.state != QuestState.QUEST_STATE_FINISHED)
// .forEach(GameQuest::finish);
this.getOwner().getSession().send(new PacketFinishedParentQuestUpdateNotify(this));
this.getOwner().getSession().send(new PacketCodexDataUpdateNotify(this));