You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While there's a command for the player action timeout, there doesn't appear to be a command to modify the countdown for new players to join a new game. The default is 30 seconds
// Returns an {Observable} that will `onNext` for each player that joins and
// `onCompleted` when time expires or the max number of players join.
static pollPotentialPlayers(messages, channel, scheduler=rx.Scheduler.timeout, timeout=30, maxPlayers=10) {
let formatMessage = t => `Who wants to play? Respond with 'yes' in this channel in the next ${t} seconds.`;
let timeExpired = PlayerInteraction.postMessageWithTimeout(channel, formatMessage, scheduler, timeout);
The text was updated successfully, but these errors were encountered:
While there's a command for the player action timeout, there doesn't appear to be a command to modify the countdown for new players to join a new game. The default is 30 seconds
The text was updated successfully, but these errors were encountered: