Interface InvalidArgumentsPacketPacket

Sent to clients if the server caught a problem with a given packet's arguments.

InvalidPacketPacket for all possible InvalidPacket packet subtypes.

interface InvalidArgumentsPacketPacket {
    cmd: "InvalidPacket";
    text: string;
    type: "arguments";
}

Properties

Properties

cmd
text: string

A descriptive message of the problem at hand.

type

The type of problem that was detected in the packet.