From 5af63a3d29fab5c2be87cc0e29b04f5e7bea45bd Mon Sep 17 00:00:00 2001 From: PRO100KatYT <67335438+PRO100KatYT@users.noreply.github.com> Date: Fri, 9 Jan 2026 17:45:05 +0100 Subject: [PATCH] Fixed being unable to go back to BR from STW --- CloudStorage/DefaultRuntimeOptions.ini | 1 - structure/cloudstorage.js | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CloudStorage/DefaultRuntimeOptions.ini b/CloudStorage/DefaultRuntimeOptions.ini index 5dfb48d..772a52a 100644 --- a/CloudStorage/DefaultRuntimeOptions.ini +++ b/CloudStorage/DefaultRuntimeOptions.ini @@ -1,7 +1,6 @@ [/Script/FortniteGame.FortRuntimeOptions] bEnableGlobalChat=true # Enable global chat. bEnableMexiCola=true # Enable the new friends tab (v19.00+). -bLoadDirectlyIntoLobby=false # Enable the Select Game Mode screen. bEnableSocialTab=true # Enable the Rift Tour frontend section (v17.30). !SocialRTInfo=ClearArray +SocialRTInfo=(SlotId=1,StartsAtUTC=9999.08.06-22.00.00) diff --git a/structure/cloudstorage.js b/structure/cloudstorage.js index 3e2ef36..52fcd89 100644 --- a/structure/cloudstorage.js +++ b/structure/cloudstorage.js @@ -62,6 +62,11 @@ express.get("/fortnite/api/cloudstorage/system/:file", async (req, res) => { ParsedFile += "\n[ConsoleVariables]\nnet.AllowEncryption=0\n"; } + // This hotfix on versions > 19.30 would cause player to be unable to go back to BR from STW + if (req.params.file === "DefaultRuntimeOptions.ini" && 17.50 <= memory.build && memory.build <= 19.30) { + ParsedFile += "\nbLoadDirectlyIntoLobby=false\n"; + } + return res.status(200).send(ParsedFile).end(); } else { res.status(200);