From e5ba514454245fc48c78f4815ccaacfd022edca1 Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 24 Sep 2025 00:04:01 -0400 Subject: [PATCH] >= 24 -> >= 23 --- structure/cloudstorage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structure/cloudstorage.js b/structure/cloudstorage.js index 1f0cca7..3e2ef36 100644 --- a/structure/cloudstorage.js +++ b/structure/cloudstorage.js @@ -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"; }