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() { public void useAllInputs() {
if (currentRecipe == null || !parentTile.getWorldObj().isRemote) { if (currentRecipe == null) {
return; return;
} }
for (ItemStack input : currentRecipe.getInputs()) { for (ItemStack input : currentRecipe.getInputs()) {