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',