Skip to content

Commit

Permalink
Update for netcode change in ranvier
Browse files Browse the repository at this point in the history
  • Loading branch information
shawncplus committed Jan 7, 2018
1 parent 4920fc9 commit a45010c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/neuro-app/neuro-app.html
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,10 @@
if (data.type === 'message') {
this.writeOutput(data.message);
} else if (data.type === 'data') {
this.playerData = data.data;
if (!this.playerData) {
this.playerData = {};
}
this.set('playerData.' + data.group, data.data);
}
}

Expand Down

0 comments on commit a45010c

Please sign in to comment.