Re-add oredict mode with "exact mode" off/on (by default ON)

This commit is contained in:
raoulvdberge
2019-10-28 19:08:53 +01:00
parent df807d43c5
commit 148dcde872

View File

@@ -49,7 +49,7 @@ public class CraftingPattern implements ICraftingPattern {
if (input.isEmpty()) {
inputs.add(NonNullList.create());
} else if (exact) {
} else if (!exact) {
NonNullList<ItemStack> possibilities = NonNullList.create();
possibilities.add(input.copy());