mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 07:26:19 +00:00
🆙 Small fixes NFT Clothing
This commit is contained in:
@@ -291,7 +291,9 @@ const useAvatarEditorState = () =>
|
||||
|
||||
if(!partSet || !partSet.isSelectable || ((partSet.gender !== gender) && (partSet.gender !== AvatarFigurePartType.UNISEX))) continue;
|
||||
|
||||
const isNftPartSet = nftFigureSetIds.has(partSet.id);
|
||||
const isNftPartSet = nftFigureSetIds.size > 0
|
||||
? nftFigureSetIds.has(partSet.id)
|
||||
: GetAvatarRenderManager().downloadManager.isNftPartSet(partSet);
|
||||
|
||||
if((buildMode === buildModeDefault) && isNftPartSet) continue;
|
||||
if((buildMode === buildModeNft) && !isNftPartSet) continue;
|
||||
|
||||
Reference in New Issue
Block a user