From 88b5fa628ab2b81762addcbc1e6a112590d78070 Mon Sep 17 00:00:00 2001 From: Lawin0129 Date: Sun, 23 Jan 2022 15:20:29 +0000 Subject: [PATCH] Update index.js --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 7f9aad0..3a819e7 100644 --- a/index.js +++ b/index.js @@ -1864,7 +1864,9 @@ express.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", async (r ShouldGiveQuest = false; } else { ShouldGiveQuest = true; - profile.stats.attributes.quest_manager.dailyQuestRerolls = 1; + if (profile.stats.attributes.quest_manager.dailyQuestRerolls < 0) { + profile.stats.attributes.quest_manager.dailyQuestRerolls += 1; + } } } }