From 420faddca46e70e3a70def168fb4e452ef193b0d Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Sat, 21 Feb 2015 21:31:16 +0000 Subject: Added just a butt ton of stuff, also thanks to pau101 for helping me with the Hand Pedestal animation :) --- .../jewelrycraft/network/PacketSendLiquidData.java | 40 +++++++++++++++++----- 1 file changed, 32 insertions(+), 8 deletions(-) (limited to 'java/darkknight/jewelrycraft/network/PacketSendLiquidData.java') diff --git a/java/darkknight/jewelrycraft/network/PacketSendLiquidData.java b/java/darkknight/jewelrycraft/network/PacketSendLiquidData.java index 436daba..bad14e7 100644 --- a/java/darkknight/jewelrycraft/network/PacketSendLiquidData.java +++ b/java/darkknight/jewelrycraft/network/PacketSendLiquidData.java @@ -1,22 +1,28 @@ package darkknight.jewelrycraft.network; -import net.minecraft.block.Block; +import io.netty.buffer.ByteBuf; import net.minecraft.client.Minecraft; import cpw.mods.fml.common.network.simpleimpl.IMessage; import cpw.mods.fml.common.network.simpleimpl.IMessageHandler; import cpw.mods.fml.common.network.simpleimpl.MessageContext; import darkknight.jewelrycraft.JewelrycraftMod; -import darkknight.jewelrycraft.block.BlockMoltenMetal; -import io.netty.buffer.ByteBuf; public class PacketSendLiquidData implements IMessage, IMessageHandler { int dimID, x, y, z, itemID, itemMeta, color; + /** + * + */ public PacketSendLiquidData() - { - } + {} + /** + * @param packet + * @param itemID + * @param itemMeta + * @param color + */ public PacketSendLiquidData(PacketRequestLiquidData packet, int itemID, int itemMeta, int color) { dimID = packet.dimID; @@ -28,6 +34,15 @@ public class PacketSendLiquidData implements IMessage, IMessageHandler