Interface PlayerMultipleChoice

A choice used by MultipleChoicesErrors on player requests

interface PlayerMultipleChoice {
    fetch: ((options?) => Promise<Player>);
    name: string;
    rank: RankData;
    uuid: string;
}

Properties

Properties

fetch: ((options?) => Promise<Player>)

Type declaration

name: string

The players name

Usually, MultipleChoicesErrors occur because player names are not updated consistently. The names are likely to match for all choices.
rank: RankData

The players rank

uuid: string

The players UUID

Generated using TypeDoc