Skip to content

Commit

Permalink
Fix a broken combiner dye recipe #6075
Browse files Browse the repository at this point in the history
  • Loading branch information
pupnewfster committed Apr 18, 2020
1 parent 5bef9bd commit 32078ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
},
"output": {
"item": "minecraft:light_gray_dye",
"item": "minecraft:light_blue_dye",
"count": 4
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ private void addCombinerDyeRecipes(Consumer<IFinishedRecipe> consumer, String ba
CombinerRecipeBuilder.combining(
ItemStackIngredient.from(Tags.Items.DYES_BLUE),
ItemStackIngredient.from(Tags.Items.DYES_WHITE),
new ItemStack(Items.LIGHT_GRAY_DYE, 4)
new ItemStack(Items.LIGHT_BLUE_DYE, 4)
).addCriterion(Criterion.HAS_COMBINER)
.build(consumer, Mekanism.rl(basePath + "light_blue"));
//Green + white -> lime
Expand Down

0 comments on commit 32078ce

Please sign in to comment.