Send QUEST_COND_NONE on every login (#2386)

For players that enabled questing late
This commit is contained in:
Nazrin
2023-09-25 16:30:33 -07:00
committed by GitHub
Unverified
parent 5faf39d359
commit b6e7d69949
3 changed files with 1 additions and 13 deletions
@@ -221,14 +221,11 @@ public final class QuestManager extends BasePlayerManager {
this.player.sendPacket(new PacketGivingRecordNotify(this.getGivingRecords()));
}
public void onPlayerBorn() {
public void onLogin() {
if (this.isQuestingEnabled()) {
this.enableQuests();
this.sendGivingRecords();
}
}
public void onLogin() {
List<GameMainQuest> activeQuests = getActiveMainQuests();
List<GameQuest> activeSubs = new ArrayList<>(activeQuests.size());