mirror of
https://github.com/ApfelTeeSaft/Reload-Backend.git
synced 2026-08-26 19:33:26 +00:00
Added some playlists + fied cosmetic mistake
This commit is contained in:
@@ -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]
|
||||
|
||||
+3
-3
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user