initial commit

This commit is contained in:
Sen 2025-03-11 00:23:54 +01:00 committed by Sen
parent 3c9ee26b06
commit 22186c33b9
1458 changed files with 282792 additions and 0 deletions

View file

@ -0,0 +1,60 @@
package game.packet;
import java.io.IOException;
import game.network.NetHandlerPlayClient;
import game.network.Packet;
import game.network.PacketBuffer;
import game.potion.PotionEffect;
public class S1EPacketRemoveEntityEffect implements Packet<NetHandlerPlayClient>
{
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.
*/
public void processPacket(NetHandlerPlayClient handler)
{
handler.handleRemoveEntityEffect(this);
}
public int getEntityId()
{
return this.entityId;
}
public int getEffectId()
{
return this.effectId;
}
}