Fixed the empowerer not allowing extractions

This commit is contained in:
Ellpeck 2016-10-31 22:36:42 +01:00
parent 204548ff75
commit 2efcf0eddd

View file

@ -165,7 +165,7 @@ public class TileEntityEmpowerer extends TileEntityInventoryBase{
@Override @Override
public boolean canExtractItem(int index, ItemStack stack, EnumFacing direction){ public boolean canExtractItem(int index, ItemStack stack, EnumFacing direction){
return !getRecipesForInput(stack).isEmpty(); return getRecipesForInput(stack).isEmpty();
} }
@Override @Override