remove netherite tools

This commit is contained in:
Pyritie 2025-05-18 18:00:56 +01:00
parent 8fed595b82
commit 6fd8da5557
2 changed files with 7 additions and 0 deletions

View file

@ -53,6 +53,11 @@ global.GTCEU_DISABLED_ITEMS = [
'gtceu:stone_buzz_saw_blade',
'gtceu:stone_wrench_tip',
'gtceu:netherite_nugget',
'gtceu:tiny_netherite_dust',
'gtceu:small_netherite_dust',
'gtceu:netherite_dust',
'gtceu:treated_wood_hanging_sign',
'gtceu:treated_wood_boat',
'gtceu:treated_wood_chest_boat',

View file

@ -229,6 +229,8 @@ const registerGTCEuMaterialModification = (event) => {
// Cast iron tools don't make sense but gregtech shits itself if they're missing,
// so I'm just giving them terrible terrible stats
GTMaterials.Iron.setProperty(PropertyKey.TOOL, ToolProperty.Builder.of(2.5, 1.0, 20, 2, [GTToolType.PICKAXE]).build());
// Hide netherite too
GTMaterials.Netherite.getProperty(PropertyKey.TOOL).removeTypes(metalTooling);
for (var material of GTCEuAPI.materialManager.getRegisteredMaterials()) {
var toolProperty = material.getProperty(PropertyKey.TOOL);