mirror of
https://github.com/Lawin0129/LawinServer.git
synced 2026-01-13 02:42:22 +01:00
Fixed being unable to go back to BR from STW
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
[/Script/FortniteGame.FortRuntimeOptions]
|
[/Script/FortniteGame.FortRuntimeOptions]
|
||||||
bEnableGlobalChat=true # Enable global chat.
|
bEnableGlobalChat=true # Enable global chat.
|
||||||
bEnableMexiCola=true # Enable the new friends tab (v19.00+).
|
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).
|
bEnableSocialTab=true # Enable the Rift Tour frontend section (v17.30).
|
||||||
!SocialRTInfo=ClearArray
|
!SocialRTInfo=ClearArray
|
||||||
+SocialRTInfo=(SlotId=1,StartsAtUTC=9999.08.06-22.00.00)
|
+SocialRTInfo=(SlotId=1,StartsAtUTC=9999.08.06-22.00.00)
|
||||||
|
|||||||
@@ -62,6 +62,11 @@ express.get("/fortnite/api/cloudstorage/system/:file", async (req, res) => {
|
|||||||
ParsedFile += "\n[ConsoleVariables]\nnet.AllowEncryption=0\n";
|
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();
|
return res.status(200).send(ParsedFile).end();
|
||||||
} else {
|
} else {
|
||||||
res.status(200);
|
res.status(200);
|
||||||
|
|||||||
Reference in New Issue
Block a user