tournament: add: goto
This commit is contained in:
parent
ea9d86b5a3
commit
2a63edf739
@ -124,6 +124,11 @@ class Tourmanent extends AExchangeable
|
|||||||
await this.errorHandler(data);
|
await this.errorHandler(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async _receiveGoTo(data)
|
||||||
|
{
|
||||||
|
await this._goToHandler(data)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param {MessageEvent} event
|
* @param {MessageEvent} event
|
||||||
@ -144,6 +149,10 @@ class Tourmanent extends AExchangeable
|
|||||||
case "del_participant":
|
case "del_participant":
|
||||||
await this._receiveDelParticipant(data);
|
await this._receiveDelParticipant(data);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case "go_to":
|
||||||
|
await this._receiveGoTo(data);
|
||||||
|
break
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user