/takeback

Allows to take back a move.

action

The action to take as per these options.

  • propose
  • decline
  • accept

Usage

Propose a take back

ws.send('/takeback propose');
{
  "/takeback": {
    "action": "propose"
   }
}

Decline a take back

ws.send('/takeback decline');
{
  "/takeback": {
    "action": "decline"
   }
}

Accept a take back

ws.send('/takeback accept');
{
  "/takeback": {
    "action": "accept"
   }
}