Skip to content

Commit

Permalink
Merge branch '1.15.2/master' into 1.16.1/master
Browse files Browse the repository at this point in the history
  • Loading branch information
puggan committed Jul 4, 2020
2 parents bc01369 + 62d4703 commit 19af91f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'eclipse'

version = '3.0.2'
version = '3.1.0'
group = 'shadows.placebo'
archivesBaseName = 'Placebo-1.16.1'

Expand Down
2 changes: 2 additions & 0 deletions src/main/java/shadows/placebo/recipe/FastShapelessRecipe.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ public class FastShapelessRecipe extends ShapelessRecipe {
public FastShapelessRecipe(ResourceLocation id, String group, ItemStack output, NonNullList<Ingredient> ingredients) {
super(id, group, output, ingredients);
isSimple = ReflectionHelper.getPrivateValue(ShapelessRecipe.class, this, "isSimple");
if (isSimple) for (Ingredient i : ingredients)
i.getValidItemStacksPacked();
}

@Override
Expand Down

0 comments on commit 19af91f

Please sign in to comment.