Fix items showing up as craftable when they weren't after taking out the last one.
This commit is contained in:
parent
da5879b667
commit
5432decf95
1 changed files with 1 additions and 1 deletions
|
@ -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() )
|
||||
|
|
Loading…
Reference in a new issue