From 4c36da4f9196e3967af9d3f48bfb62064906b5c3 Mon Sep 17 00:00:00 2001 From: rearth Date: Wed, 11 Dec 2024 22:40:20 +0100 Subject: [PATCH] Reduce exosuit armor level to iron-like --- common/src/main/java/rearth/oritech/init/ToolsContent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/rearth/oritech/init/ToolsContent.java b/common/src/main/java/rearth/oritech/init/ToolsContent.java index 6ab717d7..2f8df9f0 100644 --- a/common/src/main/java/rearth/oritech/init/ToolsContent.java +++ b/common/src/main/java/rearth/oritech/init/ToolsContent.java @@ -35,7 +35,7 @@ public class ToolsContent implements ArchitecturyRegistryContainer { protected static final Item.Settings ELECTRIC_SETTINGS = UNBREAKING_SETTINGS; //.component(Oritech.ENERGY_CONTENT.componentType(), 0L); protected static final Item.Settings JETPACK_SETTINGS = UNBREAKING_SETTINGS; // .component(ComponentContent.STORED_FLUID.get(), FluidStack.create(FluidContent.STILL_FUEL.get().getStill(), 0)); //.component(Oritech.ENERGY_CONTENT.componentType(), 0L); - public static final RegistryEntry EXOSUIT_MATERIAL = ArmorMaterials.DIAMOND; + public static final RegistryEntry EXOSUIT_MATERIAL = ArmorMaterials.IRON; public static final RegistryEntry JETPACK_MATERIAL = ArmorMaterials.LEATHER; public static final ToolMaterial ELECTRIC_MATERIAL = new ElectricToolMaterial(); public static final ToolMaterial PROMETHIUM_MATERIAL = new PromethiumToolMaterial();