Made empty buckets be able to get pulled out of the coal generator

Closes #132
This commit is contained in:
Ellpeck 2016-06-27 18:40:53 +02:00
parent 1627dace83
commit 28c6e551d8

View file

@ -105,7 +105,7 @@ public class TileEntityCoalGenerator extends TileEntityInventoryBase implements
@Override
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
return false;
return TileEntityFurnace.getItemBurnTime(this.slots[0]) <= 0;
}
@Override