From 464d56a1cfa9b078a3bf7c75f8dc45ba776d3063 Mon Sep 17 00:00:00 2001 From: TheAfroOfDoom Date: Sat, 12 Oct 2024 15:55:37 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20prune=20`gray=5Fdye`=20model=20f?= =?UTF-8?q?ile=20from=20build=20-=20Summit=20will=20likely=20already=20hav?= =?UTF-8?q?e=20this=20setup=20on=20their=20end?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package-scripts/build.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package-scripts/build.js b/package-scripts/build.js index 7a8354fb3..d5beaa3e0 100644 --- a/package-scripts/build.js +++ b/package-scripts/build.js @@ -234,6 +234,11 @@ const getSummitResourcepackPaths = () => { ...minecraftPaths, ...omegaFloweyPaths, ]); + const removeGrayDye = async ({ compiledPath }) => { + const grayDyeFile = `${compiledPath}/assets/minecraft/models/item/gray_dye.json`; + await rimraf(grayDyeFile); + }; + postProcessors.push(removeGrayDye); const resourcepackPaths = prefixPaths('resourcepack/', [ 'pack.mcmeta',