diff --git a/CloudStorage/DefaultGame.ini b/CloudStorage/DefaultGame.ini index 9b6e3a8..d4f2cb2 100644 --- a/CloudStorage/DefaultGame.ini +++ b/CloudStorage/DefaultGame.ini @@ -111,6 +111,9 @@ bEnableCreativeMode=false ; Change "false" to "true" if u want Enable Creative s +FrontEndPlaylistData=(PlaylistName=Playlist_Trios, PlaylistAccess=(bEnabled=True, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=2)) +FrontEndPlaylistData=(PlaylistName=Playlist_DefaultSquad, PlaylistAccess=(bEnabled=True, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=3)) +FrontEndPlaylistData=(PlaylistName=Playlist_Playground, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=1, bDisplayAsLimitedTime=true, DisplayPriority=0)) ++FrontEndPlaylistData=(PlaylistName=Playlist_Respawn_24, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=0, bDisplayAsLimitedTime=false, DisplayPriority=6)) ++FrontEndPlaylistData=(PlaylistName=Playlist_PlaygroundV2, PlaylistAccess=(bEnabled=False, bIsDefaultPlaylist=false, bVisibleWhenDisabled=false, bDisplayAsNew=false, CategoryIndex=2, bDisplayAsLimitedTime=false, DisplayPriority=16)) ++FrontEndPlaylistData=(PlaylistName=Playlist_Campaign, PlaylistAccess=(bEnabled=False, bInvisibleWhenEnabled=true)) ; It should improve the volume of something, I think ;[/Script/FortniteGame.FortVolumeManager] diff --git a/routes/mcp.js b/routes/mcp.js index 281bdda..5cbb613 100644 --- a/routes/mcp.js +++ b/routes/mcp.js @@ -2868,7 +2868,7 @@ app.post("/fortnite/api/game/v2/profile/:accountId/client/CopyCosmeticLoadout", const profiles = await Profile.findOne({ accountId: req.user.accountId }); var profile = profiles.profiles[req.query.profileId]; - const memory = Version.GetVersionInfo(req); + const memory = functions.GetVersionInfo(req); if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError( "errors.com.epicgames.modules.profiles.operation_forbidden", @@ -2937,7 +2937,7 @@ app.post("/fortnite/api/game/v2/profile/:accountId/client/SetCosmeticLockerName" const profiles = await Profile.findOne({ accountId: req.user.accountId }); var profile = profiles.profiles[req.query.profileId]; - const memory = Version.GetVersionInfo(req); + const memory = functions.GetVersionInfo(req); if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError( "errors.com.epicgames.modules.profiles.operation_forbidden", @@ -2996,7 +2996,7 @@ app.post("/fortnite/api/game/v2/profile/*/client/DeleteCosmeticLoadout", verifyT const profiles = await Profile.findOne({accountId: req.user.accountId}); let profile = profiles.profiles[req.query.profileId]; - const memory = Version.GetVersionInfo(req); + const memory = functions.GetVersionInfo(req); if (!await profileManager.validateProfile(req.query.profileId, profiles)) return error.createError( "errors.com.epicgames.modules.profiles.operation_forbidden",