Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class TileAutoCrafter
def containsEnoughResource(item: ItemKey, amount: Int): Boolean = {
val eq = new ItemEquality
eq.matchMeta = !item.makeStack(0).isItemStackDamageable
eq.matchNBT = false
eq.matchNBT = true
eq.matchOre = currentRecipe.isInstanceOf[ShapedOreRecipe] || currentRecipe
.isInstanceOf[ShapelessOreRecipe]

Expand Down Expand Up @@ -202,7 +202,7 @@ class TileAutoCrafter
def eatResource(item: ItemKey, amount: Int) {
val eq = new ItemEquality
eq.matchMeta = !item.makeStack(0).isItemStackDamageable
eq.matchNBT = false
eq.matchNBT = true
eq.matchOre = currentRecipe.isInstanceOf[ShapedOreRecipe] || currentRecipe
.isInstanceOf[ShapelessOreRecipe]

Expand Down