add compiling of client code to es5

This commit is contained in:
Asraelite 2016-04-02 18:35:49 +01:00
parent 79dd88fd67
commit 7bd1935723
8 changed files with 4181 additions and 13 deletions

View file

@ -125,7 +125,8 @@ class World {
}
removePlayer(player) {
this.removeBody(player.ship);
if (player.ship || true)
this.removeBody(player.ship);
this.ships.delete(player);
this.players.delete(player);
}