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; + } } } }