correction to the previous commit
please --squash this or the previous ones. (and i'll try not to write up commits using the web interface, even for simple things in the future)
This commit is contained in:
parent
041e4afcf6
commit
a48e184ddb
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
package buildcraft.transport.utils;
|
||||
package buildcraft.core.utils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
|
@ -187,12 +187,12 @@ public class TileAutoWorkbench extends TileEntity implements ISpecialInventory {
|
|||
}
|
||||
|
||||
if(this.currentRecipe == null || !this.currentRecipe.matches(craftMatrix, worldObj))
|
||||
currentRecipe = CraftingHelper.findMatchingRecipe(craftMatrix, worldObj);
|
||||
currentRecipe = buildcraft.core.utils.CraftingHelper.findMatchingRecipe(craftMatrix, worldObj);
|
||||
|
||||
|
||||
ItemStack resultStack = null;
|
||||
if(currentRecipe != null) {
|
||||
resultStack = currentRecipe.getCraftingResult(internalInventoryCrafting);
|
||||
resultStack = currentRecipe.getCraftingResult(craftMatrix);
|
||||
}
|
||||
|
||||
if (resultStack == null || !doRemove) {
|
||||
|
|
Loading…
Reference in a new issue