Skip to content

Commit 1dd16c5

Browse files
&&
1 parent c71e5f2 commit 1dd16c5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/net/neganote/gtutilities/common/machine/UtilAEMachines.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class UtilAEMachines {
1919
public static MachineDefinition EXPANDED_ME_PATTERN_BUFFER_PROXY = null;
2020

2121
static {
22-
if (UtilConfig.INSTANCE.features.expandedBuffersEnabled & GTCEu.Mods.isAE2Loaded() || GTCEu.isDataGen()) {
22+
if (UtilConfig.INSTANCE.features.expandedBuffersEnabled && GTCEu.Mods.isAE2Loaded() || GTCEu.isDataGen()) {
2323
EXPANDED_ME_PATTERN_BUFFER = REGISTRATE
2424
.machine("expanded_me_pattern_buffer", ExpandedPatternBufferPartMachine::new)
2525
.tier(ZPM)

src/main/java/net/neganote/gtutilities/recipe/UtilRecipes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public static void init(Consumer<FinishedRecipe> provider) {
7272
.save(provider);
7373
}
7474

75-
if (UtilConfig.INSTANCE.features.expandedBuffersEnabled & GTCEu.Mods.isAE2Loaded()) {
75+
if (UtilConfig.INSTANCE.features.expandedBuffersEnabled && GTCEu.Mods.isAE2Loaded()) {
7676
ASSEMBLY_LINE_RECIPES.recipeBuilder("expanded_me_pattern_buffer")
7777
.inputItems(DUAL_IMPORT_HATCH[ZPM], 1)
7878
.inputItems(EMITTER_ZPM, 1)

0 commit comments

Comments
 (0)