Remove console logs

This commit is contained in:
schmelczerandras 2020-10-20 10:00:20 +02:00
parent 021cac655c
commit 909b69392d
2 changed files with 1 additions and 8 deletions

View file

@ -22,7 +22,6 @@ export class GameObjectContainer extends CommandReceiver {
protected commandExecutors: CommandExecutors = {
[CreatePlayerCommand.type]: (c: CreatePlayerCommand) => {
this.player = c.character as PlayerCharacterView;
console.log(c.character);
this.camera = new Camera(this.game);
this.addObject(this.player);
this.addObject(this.camera);