Merge pull request #141 from andr1ww/main

Switches the net.AllowEncryption statement to allow season 23
This commit is contained in:
PRO100KatYT
2025-12-20 10:21:42 +01:00
committed by GitHub

View File

@@ -58,7 +58,7 @@ express.get("/fortnite/api/cloudstorage/system/:file", async (req, res) => {
let ParsedFile = fs.readFileSync(file);
// Fixes kicks ingame on higher versions
if (req.params.file === "DefaultEngine.ini" && memory.season >= 24) {
if (req.params.file === "DefaultEngine.ini" && memory.season >= 23) {
ParsedFile += "\n[ConsoleVariables]\nnet.AllowEncryption=0\n";
}