package net.minecraft.network.login.server; import java.io.IOException; import net.minecraft.network.INetHandler; import net.minecraft.network.Packet; import net.minecraft.network.PacketBuffer; import net.minecraft.network.login.INetHandlerLoginClient; import net.minecraft.util.IChatComponent; public class S00PacketDisconnect implements Packet { private IChatComponent reason; private static final String __OBFID = "CL_00001377"; public S00PacketDisconnect() {} public S00PacketDisconnect(IChatComponent reasonIn) { this.reason = reasonIn; } /** * Reads the raw packet data from the data stream. */ public void readPacketData(PacketBuffer data) throws IOException { this.reason = data.readChatComponent(); } /** * Writes the raw packet data to the data stream. */ public void writePacketData(PacketBuffer data) throws IOException { data.writeChatComponent(this.reason); } public void func_180772_a(INetHandlerLoginClient p_180772_1_) { p_180772_1_.handleDisconnect(this); } /** * Passes this Packet on to the NetHandler for processing. */ public void processPacket(INetHandler handler) { this.func_180772_a((INetHandlerLoginClient)handler); } }