61 lines
1.4 KiB
Java
Executable file
61 lines
1.4 KiB
Java
Executable file
package game.packet;
|
|
|
|
import java.io.IOException;
|
|
|
|
import game.network.ClientPlayer;
|
|
import game.network.Packet;
|
|
import game.network.PacketBuffer;
|
|
import game.potion.Potion;
|
|
import game.potion.PotionEffect;
|
|
|
|
public class S1EPacketRemoveEntityEffect implements Packet<ClientPlayer>
|
|
{
|
|
private int entityId;
|
|
private Potion effectId;
|
|
|
|
public S1EPacketRemoveEntityEffect()
|
|
{
|
|
}
|
|
|
|
public S1EPacketRemoveEntityEffect(int entityIdIn, PotionEffect effect)
|
|
{
|
|
this.entityId = entityIdIn;
|
|
this.effectId = effect.getPotion();
|
|
}
|
|
|
|
/**
|
|
* Reads the raw packet data from the data stream.
|
|
*/
|
|
public void readPacketData(PacketBuffer buf) throws IOException
|
|
{
|
|
this.entityId = buf.readVarIntFromBuffer();
|
|
this.effectId = buf.readEnumValue(Potion.class);
|
|
}
|
|
|
|
/**
|
|
* Writes the raw packet data to the data stream.
|
|
*/
|
|
public void writePacketData(PacketBuffer buf) throws IOException
|
|
{
|
|
buf.writeVarIntToBuffer(this.entityId);
|
|
buf.writeEnumValue(this.effectId);
|
|
}
|
|
|
|
/**
|
|
* Passes this Packet on to the NetHandler for processing.
|
|
*/
|
|
public void processPacket(ClientPlayer handler)
|
|
{
|
|
handler.handleRemoveEntityEffect(this);
|
|
}
|
|
|
|
public int getEntityId()
|
|
{
|
|
return this.entityId;
|
|
}
|
|
|
|
public Potion getEffectId()
|
|
{
|
|
return this.effectId;
|
|
}
|
|
}
|