All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.network.protocol.v618.DisconnectPacket_v618 Maven / Gradle / Ivy

package cn.nukkit.network.protocol.v618;

import cn.nukkit.network.protocol.DataPacket;
import cn.nukkit.network.protocol.ProtocolInfo;
import lombok.ToString;

/**
 * @since 15-10-12
 */
@ToString
@Deprecated(since = "1.20.40-r1")
public class DisconnectPacket_v618 extends DataPacket {
    public static final byte NETWORK_ID = ProtocolInfo.DISCONNECT_PACKET;

    public boolean hideDisconnectionScreen = false;
    public String message;

    @Override
    public byte pid() {
        return NETWORK_ID;
    }

    @Override
    public void decode() {
        this.hideDisconnectionScreen = this.getBoolean();
        this.message = this.getString();
    }

    @Override
    public void encode() {
        this.reset();
        this.putBoolean(this.hideDisconnectionScreen);
        if (!this.hideDisconnectionScreen) {
            this.putString(this.message);
        }
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy