Fixed inputs not being used

This commit is contained in:
modmuss50 2015-05-27 14:44:48 +01:00
parent 046b7d7375
commit cf8628cd2a

View file

@ -181,7 +181,7 @@ public class RecipeCrafter {
}
public void useAllInputs() {
if (currentRecipe == null || !parentTile.getWorldObj().isRemote) {
if (currentRecipe == null) {
return;
}
for (ItemStack input : currentRecipe.getInputs()) {