2025-03-11 00:23:54 +01:00
|
|
|
package game.packet;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
2025-03-26 12:22:32 +01:00
|
|
|
import game.network.ClientPlayer;
|
2025-03-11 00:23:54 +01:00
|
|
|
import game.network.Packet;
|
|
|
|
import game.network.PacketBuffer;
|
|
|
|
import game.potion.PotionEffect;
|
|
|
|
|
2025-03-26 12:22:32 +01:00
|
|
|
public class S1EPacketRemoveEntityEffect implements Packet<ClientPlayer>
|
2025-03-11 00:23:54 +01:00
|
|
|
{
|
|
|
|
private int entityId;
|
|
|
|
private int effectId;
|
|
|
|
|
|
|
|
public S1EPacketRemoveEntityEffect()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public S1EPacketRemoveEntityEffect(int entityIdIn, PotionEffect effect)
|
|
|
|
{
|
|
|
|
this.entityId = entityIdIn;
|
|
|
|
this.effectId = effect.getPotionID();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads the raw packet data from the data stream.
|
|
|
|
*/
|
|
|
|
public void readPacketData(PacketBuffer buf) throws IOException
|
|
|
|
{
|
|
|
|
this.entityId = buf.readVarIntFromBuffer();
|
|
|
|
this.effectId = buf.readUnsignedByte();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Writes the raw packet data to the data stream.
|
|
|
|
*/
|
|
|
|
public void writePacketData(PacketBuffer buf) throws IOException
|
|
|
|
{
|
|
|
|
buf.writeVarIntToBuffer(this.entityId);
|
|
|
|
buf.writeByte(this.effectId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Passes this Packet on to the NetHandler for processing.
|
|
|
|
*/
|
2025-03-26 12:22:32 +01:00
|
|
|
public void processPacket(ClientPlayer handler)
|
2025-03-11 00:23:54 +01:00
|
|
|
{
|
|
|
|
handler.handleRemoveEntityEffect(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getEntityId()
|
|
|
|
{
|
|
|
|
return this.entityId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getEffectId()
|
|
|
|
{
|
|
|
|
return this.effectId;
|
|
|
|
}
|
|
|
|
}
|