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:
Andrew Hill 2013-02-21 01:04:11 +10:00
parent 041e4afcf6
commit a48e184ddb
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
package buildcraft.transport.utils;
package buildcraft.core.utils;
import java.util.ArrayList;
import java.util.List;

View file

@ -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) {