From 83c7ae8fd4373b528adc00d39a2f888fe0e19b1e Mon Sep 17 00:00:00 2001 From: Adubbz Date: Thu, 21 Nov 2013 06:30:35 +1100 Subject: [PATCH] Attempted to fix TE integration --- common/biomesoplenty/integration/TEIntegration.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/biomesoplenty/integration/TEIntegration.java b/common/biomesoplenty/integration/TEIntegration.java index 6d4020d1e..a9a5595d5 100644 --- a/common/biomesoplenty/integration/TEIntegration.java +++ b/common/biomesoplenty/integration/TEIntegration.java @@ -35,6 +35,9 @@ public class TEIntegration NBTTagCompound pulverizerCompound = new NBTTagCompound(); pulverizerCompound.setInteger("energy", energy); + pulverizerCompound.setCompoundTag("input", new NBTTagCompound()); + pulverizerCompound.setCompoundTag("primaryOutput", new NBTTagCompound()); + pulverizerCompound.setCompoundTag("secondaryOutput", new NBTTagCompound()); input.writeToNBT(pulverizerCompound.getCompoundTag("input")); primaryOutput.writeToNBT(pulverizerCompound.getCompoundTag("primaryOutput")); if (secondaryOutput != null) secondaryOutput.writeToNBT(pulverizerCompound.getCompoundTag("secondaryOutput"));