From 09bb57e9a68b3c1f32c519ba749d1cd9b63dfcc7 Mon Sep 17 00:00:00 2001 From: neoapps-dev Date: Thu, 16 Apr 2026 19:20:46 +0300 Subject: [PATCH] fix: change id for cape and skin --- src/hooks/useSkinSync.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/hooks/useSkinSync.ts b/src/hooks/useSkinSync.ts index 4f5a053..9cf058b 100644 --- a/src/hooks/useSkinSync.ts +++ b/src/hooks/useSkinSync.ts @@ -107,8 +107,8 @@ export function useSkinSync({ profile, editions }: UseSkinSyncProps) { ], }, { - id: "dlcskin00000001", - path: "dlcskin00000001.png", + id: "dlcskin99999999", + path: "dlcskin99999999.png", type: PCKAssetType.SKIN, size: skinBuf.byteLength, data: new Uint8Array(skinBuf), @@ -136,7 +136,7 @@ export function useSkinSync({ profile, editions }: UseSkinSyncProps) { }, { key: "CAPEPATH", - value: "dlccape00000001.png", + value: "dlccape99999999.png", }, ], }, @@ -144,8 +144,8 @@ export function useSkinSync({ profile, editions }: UseSkinSyncProps) { if (capeBuf) { files.push({ - id: "dlccape00000001", - path: "dlccape00000001.png", + id: "dlccape99999999", + path: "dlccape99999999.png", type: PCKAssetType.CAPE, size: capeBuf.byteLength, data: new Uint8Array(capeBuf),