Skip to content

Commit

Permalink
Update BackpackEditorHUDController.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrade-dcl committed Dec 5, 2023
1 parent f9a309e commit 6acd12a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ private async UniTaskVoid LoadAndEquipOutfitWearables(OutfitItem outfit, Cancell

foreach (string outfitWearable in outfit.outfit.wearables)
{
if (wearablesCatalogService.WearablesCatalog.ContainsKey(outfitWearable)) continue;
if (wearablesCatalogService.WearablesCatalog.ContainsKey(ExtendedUrnParser.GetShortenedUrn(outfitWearable))) continue;

try { await wearablesCatalogService.RequestWearableAsync(outfitWearable, cancellationToken); }
catch (Exception e) { Debug.LogWarning($"Cannot resolve the wearable {outfitWearable} for the outfit {outfit.slot}"); }
Expand Down

0 comments on commit 6acd12a

Please sign in to comment.