package net.minecraft.network.play.server; import java.io.IOException; import net.minecraft.network.INetHandler; import net.minecraft.network.Packet; import net.minecraft.network.PacketBuffer; import net.minecraft.network.play.INetHandlerPlayClient; import net.minecraft.util.IChatComponent; public class S02PacketChat implements Packet { private IChatComponent chatComponent; private byte field_179842_b; private static final String __OBFID = "CL_00001289"; public S02PacketChat() {} public S02PacketChat(IChatComponent component) { this(component, (byte)1); } public S02PacketChat(IChatComponent p_i45986_1_, byte p_i45986_2_) { this.chatComponent = p_i45986_1_; this.field_179842_b = p_i45986_2_; } /** * Reads the raw packet data from the data stream. */ public void readPacketData(PacketBuffer data) throws IOException { this.chatComponent = data.readChatComponent(); this.field_179842_b = data.readByte(); } /** * Writes the raw packet data to the data stream. */ public void writePacketData(PacketBuffer data) throws IOException { data.writeChatComponent(this.chatComponent); data.writeByte(this.field_179842_b); } /** * Passes this Packet on to the NetHandler for processing. */ public void processPacket(INetHandlerPlayClient handler) { handler.handleChat(this); } public boolean isChat() { return this.field_179842_b == 1 || this.field_179842_b == 2; } /** * Passes this Packet on to the NetHandler for processing. */ public void processPacket(INetHandler handler) { this.processPacket((INetHandlerPlayClient)handler); } }