Skip to content

Commit

Permalink
Fix for #14 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinuulong authored Sep 18, 2024
1 parent 34dbaa4 commit f737437
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/skin-pack.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ class SkinPack {
geometry:
"geometry.humanoid.custom" +
(this.#skins[i][1].type === "slim" ? "Slim" : ""),
texture: this.#skins[i][0].name,
texture: this.#skins[i][1].name,
type: "free",
});

Expand All @@ -179,7 +179,7 @@ class SkinPack {
`${skins.skins[i].localization_name}=${this.#skins[i][1].name}\n`;

// Save image.
zip.file(this.#skins[i][0].name, this.#skins[i][0]);
zip.file(this.#skins[i][1].name, this.#skins[i][0]);
}

return await zip
Expand Down

0 comments on commit f737437

Please sign in to comment.