Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
made large pulverizer require hv+ tier hatches
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 17, 2024
1 parent d148436 commit f13eedd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion common/src/main/java/muramasa/gregtech/data/Structures.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
import static com.gtnewhorizon.structurelib.structure.StructureUtility.*;
import static muramasa.antimatter.data.AntimatterMaterialTypes.BLOCK;
import static muramasa.antimatter.data.AntimatterMaterialTypes.FRAME;
import static muramasa.antimatter.machine.Tier.HV;
import static muramasa.antimatter.machine.Tier.LUV;
import static muramasa.antimatter.structure.AntimatterStructureUtility.ofHatch;
import static muramasa.antimatter.structure.AntimatterStructureUtility.ofHatchMinTier;
Expand Down Expand Up @@ -179,7 +180,7 @@ public static void init() {

LARGE_PULVERIZER.setStructure(BlockEntityLargeMacerator.class, b -> b.part("main")
.of("CCCCC", "CGGGC", "CGGGC", "CGGGC", "CCCCC").of(0).of("CC~CC", "CCCCC", "CCCCC", "CCCCC", "CCCCC").build()
.at('C', GregTechBlocks.TUNGSTENSTEEL_WALL, HATCH_ITEM_I, HATCH_ITEM_O, HATCH_ENERGY)
.at('C', GregTechBlocks.TUNGSTENSTEEL_WALL, HATCH_ITEM_I, HATCH_ITEM_O, ofHatchMinTier(HATCH_ENERGY, HV))
.atElement('G', onElementPass((el, t, w, x, y, z) -> {
BlockState state = w.getBlockState(new BlockPos(x, y, z));
w.setBlock(new BlockPos(x, y, z), state.setValue(BlockStateProperties.HORIZONTAL_FACING, t.getFacing()), 3);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ private void structureTranslations(){
add("tooltip.large_pulverizer.4", "3x2x3 of Grinding Wheels (Inside basin, exactly 18!)");
add("tooltip.large_pulverizer.5", "1x Item Input Hatch (Any Casing)");
add("tooltip.large_pulverizer.6", "1x Item Output Hatch (Any Casing)");
add("tooltip.large_pulverizer.7", "1x Energy Hatch (Any Casing)");
add("tooltip.large_pulverizer.7", "1x HV+ Energy Hatch (Any Casing)");

add("tooltip.large_turbine.0", "Controller Block for the %s");
add("tooltip.large_turbine.1", "Size(WxHxD): 3x3x4 (Hollow), Controller (Front centered)");
Expand Down

0 comments on commit f13eedd

Please sign in to comment.