lint fixes

This commit is contained in:
arp 2020-10-09 17:14:03 +02:00
parent f550c5a775
commit 032facb75f
6 changed files with 6 additions and 7 deletions

View file

@ -312,10 +312,10 @@ export class IoSocketController {
console.warn(message);
}
private async handleJoinRoom(client: ExSocketInterface, roomId: string, position: PointInterface, viewport: ViewportInterface, name: string, characterLayers: string[]): Promise<void> {
private handleJoinRoom(client: ExSocketInterface, roomId: string, position: PointInterface, viewport: ViewportInterface, name: string, characterLayers: string[]): void {
try {
//join new previous room
const gameRoom = await this.joinRoom(client, roomId, position);
const gameRoom = this.joinRoom(client, roomId, position);
const things = gameRoom.setViewport(client, viewport);