Skip to content

Commit

Permalink
fix large assembler and circuit assembler energy hatch counts
Browse files Browse the repository at this point in the history
  • Loading branch information
screret committed Mar 31, 2024
1 parent a72439b commit b9a0f43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 19 deletions.
19 changes: 2 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,10 @@
# ChangeLog

Version: 1.1.4.a
Version: 1.1.4.b

### ADDITIONS:
- added more wiremill recipes for different wire sizes
- made rubber saplings & leaves compostable
- made spray paint able to paint multiple blocks in a chain if crouching
- added ability to use block/fluid tags in multiblock patterns

### FIXES:
- fix AMD driver error in LDlib
- fixed bucket model
- fixed PA accepting multiblock machines
- fixed fluid pipes crashing when connected to other mods' blocks
- fixed large DT outputs not being ordered
- fixed wooden brick form disappearing after use
- fixed pyrolyse oven not getting bonuses if recipe didn't overclock
- fixed shovels crashing if somehow used to path air
- fixed full spray paint cans rendering the bar as empty
- fixed Large assembler & circuit assembler being able to have >1 energy hatch

### CHANGES:
- ported multi-amp energy hatches not giving overclocks. You now always need 2 energy hatches for an overclock.
- made dynamic data- and resourcepacks appear in the pack list(s)
- Use a grid-based UI for the multiblock part switcher
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ public static void init() {}
.aisle("XXXXXXXXX","XGGGXXSXX","XGGGX###X")
.where('S', controller(blocks(definition.get())))
.where('X', blocks(CASING_LARGE_SCALE_ASSEMBLING.get()).setMinGlobalLimited(40)
.or(Predicates.autoAbilities(definition.getRecipeTypes()))
.or(Predicates.autoAbilities(definition.getRecipeTypes(), false, false, true, true, true, true))
.or(Predicates.abilities(INPUT_ENERGY).setExactLimit(1))
.or(Predicates.autoAbilities(true, false, true)))
.where('G', Predicates.blocks(CASING_TEMPERED_GLASS.get()))
.where('A', Predicates.air())
Expand Down Expand Up @@ -294,7 +295,8 @@ public static void init() {}
.aisle("#####XX","#####SX","#####XX")
.where('S', controller(blocks(definition.get())))
.where('X', blocks(CASING_LARGE_SCALE_ASSEMBLING.get()).setMinGlobalLimited(55)
.or(Predicates.autoAbilities(definition.getRecipeTypes()))
.or(Predicates.autoAbilities(definition.getRecipeTypes(), false, false, true, true, true, true))
.or(Predicates.abilities(INPUT_ENERGY).setExactLimit(1))
.or(Predicates.autoAbilities(true, false, true)))
.where('T', Predicates.blocks(CASING_TEMPERED_GLASS.get()))
.where('G', Predicates.blocks(CASING_GRATE.get()))
Expand Down

0 comments on commit b9a0f43

Please sign in to comment.