package net.minecraft.network.packet; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import net.minecraft.potion.PotionEffect; public class Packet42RemoveEntityEffect extends Packet { /** The ID of the entity which an effect is being removed from. */ public int entityId; /** The ID of the effect which is being removed from an entity. */ public byte effectId; public Packet42RemoveEntityEffect() {} public Packet42RemoveEntityEffect(int par1, PotionEffect par2PotionEffect) { this.entityId = par1; this.effectId = (byte)(par2PotionEffect.getPotionID() & 255); } /** * Abstract. Reads the raw packet data from the data stream. */ public void readPacketData(DataInputStream par1DataInputStream) throws IOException { this.entityId = par1DataInputStream.readInt(); this.effectId = par1DataInputStream.readByte(); } /** * Abstract. Writes the raw packet data to the data stream. */ public void writePacketData(DataOutputStream par1DataOutputStream) throws IOException { par1DataOutputStream.writeInt(this.entityId); par1DataOutputStream.writeByte(this.effectId); } /** * Passes this Packet on to the NetHandler for processing. */ public void processPacket(NetHandler par1NetHandler) { par1NetHandler.handleRemoveEntityEffect(this); } /** * Abstract. Return the size of the packet (not counting the header). */ public int getPacketSize() { return 5; } }