Fixed inputs not being used
This commit is contained in:
parent
046b7d7375
commit
cf8628cd2a
1 changed files with 1 additions and 1 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue