Interface BouncedPacket

Sent to clients after a client requested this message be sent to them, more info in the BouncePacket.

interface BouncedPacket {
    cmd: "Bounced";
    data: JSONRecord;
    games?: string[];
    slots?: number[];
    tags?: string[];
}

Properties

cmd

A verbatim copy of the data in the BouncePacket package.

games?: string[]

Optional. Game names this message is targeting.

slots?: number[]

Optional. Player slot IDs that this message is targeting.

tags?: string[]

Optional. Client tags this message is targeting.