From 19cdfbfb0a2a8e8a911732340e2b556dcdbad4ce Mon Sep 17 00:00:00 2001 From: Nicholas Ignoffo Date: Tue, 17 Apr 2018 16:16:03 -0700 Subject: [PATCH] This file slipped through the craks :think: --- src/main/java/WayofTime/bloodmagic/altar/BloodAltar.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/WayofTime/bloodmagic/altar/BloodAltar.java b/src/main/java/WayofTime/bloodmagic/altar/BloodAltar.java index 0cb9b8f7..70eedb21 100644 --- a/src/main/java/WayofTime/bloodmagic/altar/BloodAltar.java +++ b/src/main/java/WayofTime/bloodmagic/altar/BloodAltar.java @@ -303,7 +303,7 @@ public class BloodAltar implements IFluidHandler { if (progress >= liquidRequired * stackSize) { ItemStack result = ItemHandlerHelper.copyStackWithSize(recipe.getOutput(), stackSize); - BloodMagicCraftedEvent.Altar event = new BloodMagicCraftedEvent.Altar(recipe.getInput(), result); + BloodMagicCraftedEvent.Altar event = new BloodMagicCraftedEvent.Altar(result, input.copy()); MinecraftForge.EVENT_BUS.post(event); tileAltar.setInventorySlotContents(0, event.getOutput()); progress = 0;