Fixes #3209: Reset stack to prevent leaking meaningful ones (#3210)

This commit is contained in:
yueh
2017-11-12 12:53:40 +01:00
committed by GitHub
parent fab42ccc75
commit 122b6163dc
2 changed files with 1 additions and 2 deletions
@@ -363,7 +363,7 @@ public class CraftingTreeNode
if( this.howManyEmitted > 0 )
{
final IAEItemStack i = this.what.copy();
final IAEItemStack i = this.what.copy().reset();
i.setStackSize( this.howManyEmitted );
craftingCPUCluster.addEmitable( i );
}