Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions docs/content/Modpacks/Changes/v7.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,17 @@ Now, they work by AdjacentFluidConditions, added with the `adjacentFluid(Fluid..
In a similar vein, recipes that used to have adjacent block requirements, you now need to use `adjacentBlock(Block...)` rather than `addData("blockA")`.

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

## Primitive Pump
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.

## Conveyor and Robot Arm Covers
Conveyor Covers, when placed feeding into pipes, allow selecting their distribution mode, between Priority (default), Round Robin, and Round Robin with Restriction.

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.
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.
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.

Robot Arm covers, when placed on Pipe *exits*, can now appropriately limit item outputs using Keep Exact mode.
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.
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.
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ public class GTMultiMachines {
.where('F', Predicates.frames(GTMaterials.TreatedWood))
.where('H',
Predicates.abilities(PartAbility.PUMP_FLUID_HATCH)
.or(blocks(FLUID_EXPORT_HATCH[LV].get(), FLUID_EXPORT_HATCH[MV].get())))
.or(blocks(FLUID_EXPORT_HATCH[ULV].get(), FLUID_EXPORT_HATCH[LV].get())))
.where('#', Predicates.any())
.build())
.allowExtendedFacing(false)
Expand Down