diff --git a/common/buildcraft/factory/TileAutoWorkbench.java b/common/buildcraft/factory/TileAutoWorkbench.java index b317d339..bbe04067 100644 --- a/common/buildcraft/factory/TileAutoWorkbench.java +++ b/common/buildcraft/factory/TileAutoWorkbench.java @@ -247,14 +247,14 @@ public class TileAutoWorkbench extends TileEntity implements ISpecialInventory { this.refilFromNeibour(); if (!this.canCraft()){ - return new ItemStack[0]; + return null; } } this.craft(); item = result.copy(); }else{ - return new ItemStack[0]; + return null; } return new ItemStack[] { item };