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);
|
IRecipe output = CraftingManager.findMatchingRecipe(this.craftMatrix, this.world);
|
||||||
ItemStack stack = ItemStack.EMPTY;
|
ItemStack stack = ItemStack.EMPTY;
|
||||||
if(output != null) stack = output.getRecipeOutput();
|
if(output != null) stack = output.getRecipeOutput();
|
||||||
this.craftResult.setInventorySlotContents(0, stack);
|
this.craftResult.setInventorySlotContents(0, stack.copy());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue