Fixed being unable to go back to BR from STW

This commit is contained in:
PRO100KatYT
2026-01-09 17:45:05 +01:00
parent f8692ba861
commit 5af63a3d29
2 changed files with 5 additions and 1 deletions

View File

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

View File

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