tournament: add: goto

This commit is contained in:
starnakin 2024-04-22 17:32:26 +02:00
parent ea9d86b5a3
commit 2a63edf739

View File

@ -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;