Also care about oredict

This commit is contained in:
Raoul Van den Berge
2016-09-16 02:41:42 +02:00
parent 1f489a63ee
commit 667bcef351

View File

@@ -47,7 +47,7 @@ public class TileSolderer extends TileNode {
for (ISoldererRecipe recipe : RefinedStorageAPI.instance().getSoldererRegistry().getRecipes()) { for (ISoldererRecipe recipe : RefinedStorageAPI.instance().getSoldererRegistry().getRecipes()) {
for (int i = 0; i < 3; ++i) { for (int i = 0; i < 3; ++i) {
if (CompareUtils.compareStackNoQuantity(recipe.getRow(i), stack)) { if (CompareUtils.compareStackNoQuantity(recipe.getRow(i), stack) || CompareUtils.compareStackOreDict(recipe.getRow(i), stack)) {
possibleSlots.add(i); possibleSlots.add(i);
} }
} }