Skip to content

Commit 2b598db

Browse files
NanabelljurrejelleGhostipedia
authored
Allow ULV Input Hatches in Primitive Pump Multiblock (#3892)
Co-authored-by: Jurre Groenendijk <jurre@jilles.com> Co-authored-by: Ghostipedia / Caitlynn <46772882+Ghostipedia@users.noreply.github.com>
1 parent b7f206e commit 2b598db

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docs/content/Modpacks/Changes/v7.2.0.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,17 @@ Now, they work by AdjacentFluidConditions, added with the `adjacentFluid(Fluid..
3030
In a similar vein, recipes that used to have adjacent block requirements, you now need to use `adjacentBlock(Block...)` rather than `addData("blockA")`.
3131

3232
## Recipe Conditions
33-
We have moved away from the .serialize, .deserialize, .toNetwork and .fromNetwork calls on the RecipeCondition, and we now exclusively use the recipeCondition's codec.
33+
We have moved away from the .serialize, .deserialize, .toNetwork and .fromNetwork calls on the RecipeCondition, and we now exclusively use the recipeCondition's codec.
3434
See the [Recipe Conditions Page](../Other-Topics/Recipe-Conditions.md)
3535

36+
## Primitive Pump
37+
MV output hatches are no longer valid hatches for the Primitive Pump and need to be replaced with either a ULV`(new)` or LV hatch.
38+
3639
## Conveyor and Robot Arm Covers
3740
Conveyor Covers, when placed feeding into pipes, allow selecting their distribution mode, between Priority (default), Round Robin, and Round Robin with Restriction.
3841

39-
Round Robin with Priority mode has been changed to Round Robin with Restriction mode. The previous Round Robin with Priority mode was unclear, and nonfunctional.
42+
Round Robin with Priority mode has been changed to Round Robin with Restriction mode. The previous Round Robin with Priority mode was unclear, and nonfunctional.
4043
The new Round Robin wih Restriction mode attempts to evenly distribute items, as in Round Robin mode; however it attempts to *not* send any items down Restrictive Pipes unless there are no other valid destinations.
4144

4245
Robot Arm covers, when placed on Pipe *exits*, can now appropriately limit item outputs using Keep Exact mode.
43-
However, a Robot Arm being used to transfer items *into* a pipe, still cannot use Keep Exact mode for transfer; it will not move items.
46+
However, a Robot Arm being used to transfer items *into* a pipe, still cannot use Keep Exact mode for transfer; it will not move items.

src/main/java/com/gregtechceu/gtceu/common/data/machines/GTMultiMachines.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ public class GTMultiMachines {
577577
.where('F', Predicates.frames(GTMaterials.TreatedWood))
578578
.where('H',
579579
Predicates.abilities(PartAbility.PUMP_FLUID_HATCH)
580-
.or(blocks(FLUID_EXPORT_HATCH[LV].get(), FLUID_EXPORT_HATCH[MV].get())))
580+
.or(blocks(FLUID_EXPORT_HATCH[ULV].get(), FLUID_EXPORT_HATCH[LV].get())))
581581
.where('#', Predicates.any())
582582
.build())
583583
.allowExtendedFacing(false)

0 commit comments

Comments
 (0)