exclude_diamond_tipped

This commit is contained in:
TomPlop
2026-03-11 15:23:13 -04:00
parent 322d801dc6
commit c87a8beeb5

View File

@@ -109,6 +109,13 @@ function processToolHead(event, headTagPrefix, tagPrefixName, extruderMold, cera
event.remove({ mod: 'gtceu', type: 'minecraft:crafting_shaped', output: toolHeadItem })
const EXCLUDED_MATERIALS = [
'diamond_tipped_mo_50_re',
];
if (EXCLUDED_MATERIALS.includes(material.getName()))
return;
const materialName = material.getName();
const materialAmount = getMaterialAmount(headTagPrefix, material);