clean: respect es11

This commit is contained in:
2024-02-20 09:22:11 +01:00
committed by AdrienLSH
parent a0e26cde05
commit 7705a2b817
36 changed files with 163 additions and 163 deletions

View File

@ -77,7 +77,7 @@ export default class extends AbstractView
async join_game()
{
await this.game.join()
await this.game.join();
let canva = document.createElement("canvas");
@ -100,7 +100,7 @@ export default class extends AbstractView
this.game.players[index] = this.my_player;
}
this.register_key()
this.register_key();
this.render();
}