Skip to content

Commit

Permalink
Merge branch '1.20' into 1.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyploszaj committed Dec 3, 2023
2 parents f3ba9b2 + 91cd2b1 commit f0947f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
### Additions
* Updated Chinese translation

### Fixes
* Fixed highlighting for mods like Refined Storage
* Fixed some JEI transfer server kicks
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ minecraft_version=1.19.4
enabled_platforms=fabric,forge

archives_base_name=emi
mod_version=1.0.26
mod_version=1.0.27
maven_group=dev.emi

architectury_version=4.9.83
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private JemiRecipeSlotsView createSlotsView(EmiRecipe recipe, R rawRecipe, List<
addBlankIngredients(builder, slotWidgets, 3, RecipeIngredientRole.INPUT);
blankedSlots += 3;
}
addIngredients(builder, slotWidgets, recipe.getInputs(), RecipeIngredientRole.INPUT);
addIngredients(builder, slotWidgets, recipe.getInputs().subList(0, Math.max(9, recipe.getInputs().size()) - blankedSlots), RecipeIngredientRole.INPUT);
}
} else {
addIngredients(builder, slotWidgets, recipe.getInputs(), RecipeIngredientRole.INPUT);
Expand Down

0 comments on commit f0947f7

Please sign in to comment.