diff --git a/Refresh.GameServer/Endpoints/Game/Levels/PublishEndpoints.cs b/Refresh.GameServer/Endpoints/Game/Levels/PublishEndpoints.cs index 3f31becc..4eb09cef 100644 --- a/Refresh.GameServer/Endpoints/Game/Levels/PublishEndpoints.cs +++ b/Refresh.GameServer/Endpoints/Game/Levels/PublishEndpoints.cs @@ -131,7 +131,7 @@ public Response PublishLevel(RequestContext context, if (!dataContext.DataStore.ExistsInStore(rootResourcePath)) return NotFound; GameAsset? asset = dataContext.Database.GetAssetFromHash(level.RootResource); - if (asset != null) + if (asset != null && dataContext.Game != TokenGame.LittleBigPlanetPSP) { // ReSharper disable once ConvertIfStatementToSwitchStatement if (level.IsAdventure && asset.AssetType != GameAssetType.AdventureCreateProfile)