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);