mirror of
https://github.com/Lawin0129/LawinServer.git
synced 2026-01-13 10:52:23 +01:00
Update index.js
This commit is contained in:
4
index.js
4
index.js
@@ -1655,7 +1655,7 @@ express.post("/fortnite/api/game/v2/profile/*/client/SetPinnedQuests", async (re
|
|||||||
// Replace Daily Quests
|
// Replace Daily Quests
|
||||||
express.post("/fortnite/api/game/v2/profile/*/client/FortRerollDailyQuest", async (req, res) => {
|
express.post("/fortnite/api/game/v2/profile/*/client/FortRerollDailyQuest", async (req, res) => {
|
||||||
const profile = require(`./profiles/${req.query.profileId || "athena"}.json`);
|
const profile = require(`./profiles/${req.query.profileId || "athena"}.json`);
|
||||||
var QuestIDS = require("./responses/quests.json");
|
var QuestIDS = JSON.parse(JSON.stringify(require("./responses/quests.json")));
|
||||||
|
|
||||||
// do not change any of these or you will end up breaking it
|
// do not change any of these or you will end up breaking it
|
||||||
var ApplyProfileChanges = [];
|
var ApplyProfileChanges = [];
|
||||||
@@ -1822,7 +1822,7 @@ express.post("/fortnite/api/game/v2/profile/*/client/MarkNewQuestNotificationSen
|
|||||||
// Check for new quests
|
// Check for new quests
|
||||||
express.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", async (req, res) => {
|
express.post("/fortnite/api/game/v2/profile/*/client/ClientQuestLogin", async (req, res) => {
|
||||||
const profile = require(`./profiles/${req.query.profileId || "athena"}.json`);
|
const profile = require(`./profiles/${req.query.profileId || "athena"}.json`);
|
||||||
var QuestIDS = require("./responses/quests.json");
|
var QuestIDS = JSON.parse(JSON.stringify(require("./responses/quests.json")));
|
||||||
|
|
||||||
// do not change any of these or you will end up breaking it
|
// do not change any of these or you will end up breaking it
|
||||||
var ApplyProfileChanges = [];
|
var ApplyProfileChanges = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user