mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-23 15:48:34 +01:00
fix a nonsense dupe glitch
This commit is contained in:
parent
fa31c65c9f
commit
5160ac2ea8
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ public class ContainerCrafter extends Container{
|
|||
IRecipe output = CraftingManager.findMatchingRecipe(this.craftMatrix, this.world);
|
||||
ItemStack stack = ItemStack.EMPTY;
|
||||
if(output != null) stack = output.getRecipeOutput();
|
||||
this.craftResult.setInventorySlotContents(0, stack);
|
||||
this.craftResult.setInventorySlotContents(0, stack.copy());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue