From 0052d8b58fef02b6c87f75b227ed0cff202deeab Mon Sep 17 00:00:00 2001 From: aidant19 Date: Wed, 10 Jan 2024 18:43:19 -0500 Subject: [PATCH] Remove commented code --- scripts/ajexport.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/scripts/ajexport.js b/scripts/ajexport.js index cc4cd9897..afccd8d10 100644 --- a/scripts/ajexport.js +++ b/scripts/ajexport.js @@ -54,22 +54,11 @@ function injectModelPackPaths(modelContent, paths) { if (texture.path.includes('.minecraft')) { const x = texture.path.split('assets')[1]; const newPath = `${paths[2]}/assets${x}`; - // consoleLogJson({ - // texturePath: texture.path, - // afterAssets: x, - // newPath, - // }); texture.path = newPath; } else if (texture.path.includes('resourcepack/assets')) { const x = texture.path.split('resourcepack/assets')[1]; const resourcePackBase = paths[0].split('resourcepack')[0]; const newPath = `${resourcePackBase}resourcepack/assets${x}`; - // consoleLogJson({ - // texturePath: texture.path, - // resourcePackBase, - // afterAssets: x, - // newPath, - // }); texture.path = newPath; } }