Skip to content

Commit

Permalink
bump version to 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
TechLord22 committed Nov 27, 2023
1 parent fdc3f37 commit 18d7074
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@

## v1.2.6

* Added compat for GTCEu 2.8
* Added compat for GTCEu 2.8 (#60)
* Limited multiblock Assembler and Circuit Assembler to 1 energy hatch
* Updated molten fluid cooling recipes to respect freezer energy and duration overrides
* Blocked ME Output Hatches from the Large Distillation Tower
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ modGroup = gregicality

# Version of your mod.
# This field can be left empty if you want your mod's version to be determined by the latest git tag instead.
modVersion = 1.2.5
modVersion = 1.2.6

# Whether to use the old jar naming structure (modid-mcversion-version) instead of the new version (modid-version)
includeMCVersionJar = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ protected Function<BlockPos, Integer> multiblockPartSorter() {
.or(maintenancePredicate))
.where('X', casingPredicate
.or(metaTileEntities(MultiblockAbility.REGISTRY.get(MultiblockAbility.EXPORT_FLUIDS).stream()
.filter(mte -> !(mte instanceof MetaTileEntityMultiFluidHatch) && !(mte instanceof MetaTileEntityMEOutputHatch))
.filter(mte -> !(mte instanceof MetaTileEntityMultiFluidHatch) &&
!(mte instanceof MetaTileEntityMEOutputHatch))
.toArray(MetaTileEntity[]::new))
.setMinLayerLimited(1).setMaxLayerLimited(1)))
.where('Z', casingPredicate)
Expand Down

0 comments on commit 18d7074

Please sign in to comment.