Fix items showing up as craftable when they weren't after taking out the last one.

This commit is contained in:
Gunther De Wachter 2017-06-26 05:42:21 +02:00
parent da5879b667
commit 5432decf95

View file

@ -186,7 +186,7 @@ public final class AEItemStack extends AEStack<IAEItemStack> implements IAEItemS
final ItemStack itemstack = new ItemStack( d );
if(!showCraftingLabel) {
showCraftingLabel = stackSize == 0;
showCraftingLabel = stackSize == 0 && isCraftable;
}
if( itemstack.isEmpty() )