Skip to content

Commit 2fbef83

Browse files
GirixKjurrejelle
andauthored
Remove muffler hatch requirement from Large Distillery (#4195)
Co-authored-by: GirixK <GirixK@users.noreply.github.com> Co-authored-by: Jurre Groenendijk <jurre@jilles.com>
1 parent b02c901 commit 2fbef83

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ We have added a second Generic argument to our (Multiblock)MachineBuilder. This
1010
## Machine & Cover Copy/Paste System
1111
A new system for copying machines using the Machine Memory Card has been added, see [this page](../Other-Topics/Cover-Machine-Copy-Paste-Support.md) if you want to add extra copy/paste behaviour to your own machines and covers.
1212

13+
## Multiblock Structure Change
14+
The Large Fractionating Still no longer requires a muffler hatch, allowing it to be used in cleanrooms.
15+
1316
## RecipeCondition Generics
1417
We have added a Generic argument to `RecipeCondition` describing the condition.
1518
This means that your custom recipe conditions now need to extend `RecipeCondition<MyCondition>` (whereas before they just extended `RecipeCondition`).
@@ -71,4 +74,4 @@ you should **NOT** use `PipeModel#dynamicModel()` and instead set the model with
7174
## Lamp Predicates
7275
Previously, lamps were not useable with the terminal in multiblocks. There are new lamp predicates that will help solve this problem.
7376
The predicate to use all lamps is: `Predicates.anyLamp()`
74-
The predicate to use a specific color is: `Predicates.lampsByColor(DyeColor.DYE_COLOR)`. Where DYE_COLOR is the name of the color you want.
77+
The predicate to use a specific color is: `Predicates.lampsByColor(DyeColor.DYE_COLOR)`. Where DYE_COLOR is the name of the color you want.

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ public static void init() {}
636636
.aisle("#YYY#", "YYYYY", "YYYYY", "YYYYY", "#YYY#")
637637
.aisle("#YSY#", "YAAAY", "YAAAY", "YAAAY", "#YYY#")
638638
.aisle("##X##", "#XAX#", "XAPAX", "#XAX#", "##X##").setRepeatable(1, 12)
639-
.aisle("#####", "#ZZZ#", "#ZCZ#", "#ZZZ#", "#####")
639+
.aisle("#####", "#ZZZ#", "#ZZZ#", "#ZZZ#", "#####")
640640
.where('S', controller(blocks(definition.get())))
641641
.where('Y', casingPredicate.or(abilities(IMPORT_ITEMS))
642642
.or(abilities(INPUT_ENERGY).setMinGlobalLimited(1).setMaxGlobalLimited(2))
@@ -646,7 +646,6 @@ public static void init() {}
646646
.where('X', casingPredicate.or(exportPredicate))
647647
.where('Z', casingPredicate)
648648
.where('P', blocks(CASING_STEEL_PIPE.get()))
649-
.where('C', abilities(MUFFLER))
650649
.where('A', air())
651650
.where('#', any())
652651
.build();

0 commit comments

Comments
 (0)