Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
solstice23 committed Nov 6, 2024
1 parent d0ae83f commit 195d348
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/parser/SkinParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ export async function parseSkinFromZipFile(zipFile, name = null) {
comboColours = comboColours.map(([r, g, b]) => r * 256 * 256 + g * 256 + b);
skin.comboColours = comboColours;

// Catcher fallback settings
// Catcher skin fallback
// Catcher skin fallback settings
let catcherSkinFallbackValue = skinIni.find(line => line.startsWith("CatcherSkinFallback"))?.split(":")?.[1]?.trim() ?? "true";
catcherSkinFallbackValue = catcherSkinFallbackValue === "true" ? true : false;
skin.catcherSkinFallback = catcherSkinFallbackValue;
Expand Down

0 comments on commit 195d348

Please sign in to comment.