Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
GlodBlock committed Dec 22, 2024
1 parent 45faf5b commit 76d0595
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ loader_version_range=[1,)
mod_id=extendedae
mod_name=ExtendedAE
mod_license=LGPL-3.0
mod_version=1.21-2.1.5-neoforge
mod_version=1.21-2.1.6-neoforge
mod_group_id=com.glodblock.github.extendedae
mod_authors=GlodBlock
mod_description=Add some QoL extended contents for AE2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ public void onFind(@Nullable RecipeHolder<CircuitCutterRecipe> recipe) {

@Override
public boolean testRecipe(RecipeHolder<CircuitCutterRecipe> recipe) {
var output = recipe.value().output;
var output = recipe.value().output.copy();
if (!this.host.output.insertItem(0, output, true).isEmpty()) {
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public void onFind(@Nullable RecipeHolder<CrystalAssemblerRecipe> recipe) {

@Override
public boolean testRecipe(RecipeHolder<CrystalAssemblerRecipe> recipe) {
var output = recipe.value().output;
var output = recipe.value().output.copy();
if (!this.host.output.insertItem(0, output, true).isEmpty()) {
return false;
}
Expand Down

0 comments on commit 76d0595

Please sign in to comment.